protobuf-platform 1.2.184 → 1.2.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/payment/payment.proto +10 -7
- package/payment/payment_pb.js +194 -50
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -78,8 +78,9 @@ message ProviderItem {
|
|
|
78
78
|
optional string description = 4;
|
|
79
79
|
optional int32 is_active = 5;
|
|
80
80
|
optional string image = 6;
|
|
81
|
-
|
|
82
|
-
repeated
|
|
81
|
+
optional string image_cdn = 7;
|
|
82
|
+
repeated MethodItem methods = 8;
|
|
83
|
+
repeated ProviderTranslationItem translations = 9;
|
|
83
84
|
}
|
|
84
85
|
message ProviderRequest {
|
|
85
86
|
oneof request {
|
|
@@ -138,11 +139,13 @@ message MethodItem {
|
|
|
138
139
|
optional string description = 4;
|
|
139
140
|
optional int32 is_active = 5;
|
|
140
141
|
optional string image = 6;
|
|
141
|
-
optional string
|
|
142
|
-
optional
|
|
143
|
-
optional
|
|
144
|
-
optional string
|
|
145
|
-
optional string
|
|
142
|
+
optional string image_cdn = 7;
|
|
143
|
+
optional string transaction_type = 8;
|
|
144
|
+
optional int32 provider_id = 9;
|
|
145
|
+
optional string provider_title = 10;
|
|
146
|
+
optional string provider_image = 11;
|
|
147
|
+
optional string provider_image_cdn = 12;
|
|
148
|
+
optional string code = 13;
|
|
146
149
|
}
|
|
147
150
|
message MethodRequest {
|
|
148
151
|
oneof request {
|
package/payment/payment_pb.js
CHANGED
|
@@ -2921,7 +2921,7 @@ proto.payment.ItemsBunchRequest.prototype.hasIsActive = function() {
|
|
|
2921
2921
|
* @private {!Array<number>}
|
|
2922
2922
|
* @const
|
|
2923
2923
|
*/
|
|
2924
|
-
proto.payment.ProviderItem.repeatedFields_ = [
|
|
2924
|
+
proto.payment.ProviderItem.repeatedFields_ = [8,9];
|
|
2925
2925
|
|
|
2926
2926
|
|
|
2927
2927
|
|
|
@@ -2959,6 +2959,7 @@ proto.payment.ProviderItem.toObject = function(includeInstance, msg) {
|
|
|
2959
2959
|
description: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
2960
2960
|
isActive: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
2961
2961
|
image: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
2962
|
+
imageCdn: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
2962
2963
|
methodsList: jspb.Message.toObjectList(msg.getMethodsList(),
|
|
2963
2964
|
proto.payment.MethodItem.toObject, includeInstance),
|
|
2964
2965
|
translationsList: jspb.Message.toObjectList(msg.getTranslationsList(),
|
|
@@ -3020,11 +3021,15 @@ proto.payment.ProviderItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
3020
3021
|
msg.setImage(value);
|
|
3021
3022
|
break;
|
|
3022
3023
|
case 7:
|
|
3024
|
+
var value = /** @type {string} */ (reader.readString());
|
|
3025
|
+
msg.setImageCdn(value);
|
|
3026
|
+
break;
|
|
3027
|
+
case 8:
|
|
3023
3028
|
var value = new proto.payment.MethodItem;
|
|
3024
3029
|
reader.readMessage(value,proto.payment.MethodItem.deserializeBinaryFromReader);
|
|
3025
3030
|
msg.addMethods(value);
|
|
3026
3031
|
break;
|
|
3027
|
-
case
|
|
3032
|
+
case 9:
|
|
3028
3033
|
var value = new proto.payment.ProviderTranslationItem;
|
|
3029
3034
|
reader.readMessage(value,proto.payment.ProviderTranslationItem.deserializeBinaryFromReader);
|
|
3030
3035
|
msg.addTranslations(value);
|
|
@@ -3093,10 +3098,17 @@ proto.payment.ProviderItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
3093
3098
|
f
|
|
3094
3099
|
);
|
|
3095
3100
|
}
|
|
3101
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
3102
|
+
if (f != null) {
|
|
3103
|
+
writer.writeString(
|
|
3104
|
+
7,
|
|
3105
|
+
f
|
|
3106
|
+
);
|
|
3107
|
+
}
|
|
3096
3108
|
f = message.getMethodsList();
|
|
3097
3109
|
if (f.length > 0) {
|
|
3098
3110
|
writer.writeRepeatedMessage(
|
|
3099
|
-
|
|
3111
|
+
8,
|
|
3100
3112
|
f,
|
|
3101
3113
|
proto.payment.MethodItem.serializeBinaryToWriter
|
|
3102
3114
|
);
|
|
@@ -3104,7 +3116,7 @@ proto.payment.ProviderItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
3104
3116
|
f = message.getTranslationsList();
|
|
3105
3117
|
if (f.length > 0) {
|
|
3106
3118
|
writer.writeRepeatedMessage(
|
|
3107
|
-
|
|
3119
|
+
9,
|
|
3108
3120
|
f,
|
|
3109
3121
|
proto.payment.ProviderTranslationItem.serializeBinaryToWriter
|
|
3110
3122
|
);
|
|
@@ -3293,12 +3305,48 @@ proto.payment.ProviderItem.prototype.hasImage = function() {
|
|
|
3293
3305
|
|
|
3294
3306
|
|
|
3295
3307
|
/**
|
|
3296
|
-
*
|
|
3308
|
+
* optional string image_cdn = 7;
|
|
3309
|
+
* @return {string}
|
|
3310
|
+
*/
|
|
3311
|
+
proto.payment.ProviderItem.prototype.getImageCdn = function() {
|
|
3312
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
3313
|
+
};
|
|
3314
|
+
|
|
3315
|
+
|
|
3316
|
+
/**
|
|
3317
|
+
* @param {string} value
|
|
3318
|
+
* @return {!proto.payment.ProviderItem} returns this
|
|
3319
|
+
*/
|
|
3320
|
+
proto.payment.ProviderItem.prototype.setImageCdn = function(value) {
|
|
3321
|
+
return jspb.Message.setField(this, 7, value);
|
|
3322
|
+
};
|
|
3323
|
+
|
|
3324
|
+
|
|
3325
|
+
/**
|
|
3326
|
+
* Clears the field making it undefined.
|
|
3327
|
+
* @return {!proto.payment.ProviderItem} returns this
|
|
3328
|
+
*/
|
|
3329
|
+
proto.payment.ProviderItem.prototype.clearImageCdn = function() {
|
|
3330
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
3331
|
+
};
|
|
3332
|
+
|
|
3333
|
+
|
|
3334
|
+
/**
|
|
3335
|
+
* Returns whether this field is set.
|
|
3336
|
+
* @return {boolean}
|
|
3337
|
+
*/
|
|
3338
|
+
proto.payment.ProviderItem.prototype.hasImageCdn = function() {
|
|
3339
|
+
return jspb.Message.getField(this, 7) != null;
|
|
3340
|
+
};
|
|
3341
|
+
|
|
3342
|
+
|
|
3343
|
+
/**
|
|
3344
|
+
* repeated MethodItem methods = 8;
|
|
3297
3345
|
* @return {!Array<!proto.payment.MethodItem>}
|
|
3298
3346
|
*/
|
|
3299
3347
|
proto.payment.ProviderItem.prototype.getMethodsList = function() {
|
|
3300
3348
|
return /** @type{!Array<!proto.payment.MethodItem>} */ (
|
|
3301
|
-
jspb.Message.getRepeatedWrapperField(this, proto.payment.MethodItem,
|
|
3349
|
+
jspb.Message.getRepeatedWrapperField(this, proto.payment.MethodItem, 8));
|
|
3302
3350
|
};
|
|
3303
3351
|
|
|
3304
3352
|
|
|
@@ -3307,7 +3355,7 @@ proto.payment.ProviderItem.prototype.getMethodsList = function() {
|
|
|
3307
3355
|
* @return {!proto.payment.ProviderItem} returns this
|
|
3308
3356
|
*/
|
|
3309
3357
|
proto.payment.ProviderItem.prototype.setMethodsList = function(value) {
|
|
3310
|
-
return jspb.Message.setRepeatedWrapperField(this,
|
|
3358
|
+
return jspb.Message.setRepeatedWrapperField(this, 8, value);
|
|
3311
3359
|
};
|
|
3312
3360
|
|
|
3313
3361
|
|
|
@@ -3317,7 +3365,7 @@ proto.payment.ProviderItem.prototype.setMethodsList = function(value) {
|
|
|
3317
3365
|
* @return {!proto.payment.MethodItem}
|
|
3318
3366
|
*/
|
|
3319
3367
|
proto.payment.ProviderItem.prototype.addMethods = function(opt_value, opt_index) {
|
|
3320
|
-
return jspb.Message.addToRepeatedWrapperField(this,
|
|
3368
|
+
return jspb.Message.addToRepeatedWrapperField(this, 8, opt_value, proto.payment.MethodItem, opt_index);
|
|
3321
3369
|
};
|
|
3322
3370
|
|
|
3323
3371
|
|
|
@@ -3331,12 +3379,12 @@ proto.payment.ProviderItem.prototype.clearMethodsList = function() {
|
|
|
3331
3379
|
|
|
3332
3380
|
|
|
3333
3381
|
/**
|
|
3334
|
-
* repeated ProviderTranslationItem translations =
|
|
3382
|
+
* repeated ProviderTranslationItem translations = 9;
|
|
3335
3383
|
* @return {!Array<!proto.payment.ProviderTranslationItem>}
|
|
3336
3384
|
*/
|
|
3337
3385
|
proto.payment.ProviderItem.prototype.getTranslationsList = function() {
|
|
3338
3386
|
return /** @type{!Array<!proto.payment.ProviderTranslationItem>} */ (
|
|
3339
|
-
jspb.Message.getRepeatedWrapperField(this, proto.payment.ProviderTranslationItem,
|
|
3387
|
+
jspb.Message.getRepeatedWrapperField(this, proto.payment.ProviderTranslationItem, 9));
|
|
3340
3388
|
};
|
|
3341
3389
|
|
|
3342
3390
|
|
|
@@ -3345,7 +3393,7 @@ proto.payment.ProviderItem.prototype.getTranslationsList = function() {
|
|
|
3345
3393
|
* @return {!proto.payment.ProviderItem} returns this
|
|
3346
3394
|
*/
|
|
3347
3395
|
proto.payment.ProviderItem.prototype.setTranslationsList = function(value) {
|
|
3348
|
-
return jspb.Message.setRepeatedWrapperField(this,
|
|
3396
|
+
return jspb.Message.setRepeatedWrapperField(this, 9, value);
|
|
3349
3397
|
};
|
|
3350
3398
|
|
|
3351
3399
|
|
|
@@ -3355,7 +3403,7 @@ proto.payment.ProviderItem.prototype.setTranslationsList = function(value) {
|
|
|
3355
3403
|
* @return {!proto.payment.ProviderTranslationItem}
|
|
3356
3404
|
*/
|
|
3357
3405
|
proto.payment.ProviderItem.prototype.addTranslations = function(opt_value, opt_index) {
|
|
3358
|
-
return jspb.Message.addToRepeatedWrapperField(this,
|
|
3406
|
+
return jspb.Message.addToRepeatedWrapperField(this, 9, opt_value, proto.payment.ProviderTranslationItem, opt_index);
|
|
3359
3407
|
};
|
|
3360
3408
|
|
|
3361
3409
|
|
|
@@ -5676,11 +5724,13 @@ proto.payment.MethodItem.toObject = function(includeInstance, msg) {
|
|
|
5676
5724
|
description: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
5677
5725
|
isActive: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
5678
5726
|
image: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
5679
|
-
|
|
5680
|
-
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5727
|
+
imageCdn: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
5728
|
+
transactionType: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
5729
|
+
providerId: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
5730
|
+
providerTitle: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
5731
|
+
providerImage: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
5732
|
+
providerImageCdn: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
5733
|
+
code: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
5684
5734
|
};
|
|
5685
5735
|
|
|
5686
5736
|
if (includeInstance) {
|
|
@@ -5739,21 +5789,29 @@ proto.payment.MethodItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
5739
5789
|
break;
|
|
5740
5790
|
case 7:
|
|
5741
5791
|
var value = /** @type {string} */ (reader.readString());
|
|
5742
|
-
msg.
|
|
5792
|
+
msg.setImageCdn(value);
|
|
5743
5793
|
break;
|
|
5744
5794
|
case 8:
|
|
5795
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5796
|
+
msg.setTransactionType(value);
|
|
5797
|
+
break;
|
|
5798
|
+
case 9:
|
|
5745
5799
|
var value = /** @type {number} */ (reader.readInt32());
|
|
5746
5800
|
msg.setProviderId(value);
|
|
5747
5801
|
break;
|
|
5748
|
-
case
|
|
5802
|
+
case 10:
|
|
5749
5803
|
var value = /** @type {string} */ (reader.readString());
|
|
5750
5804
|
msg.setProviderTitle(value);
|
|
5751
5805
|
break;
|
|
5752
|
-
case
|
|
5806
|
+
case 11:
|
|
5753
5807
|
var value = /** @type {string} */ (reader.readString());
|
|
5754
5808
|
msg.setProviderImage(value);
|
|
5755
5809
|
break;
|
|
5756
|
-
case
|
|
5810
|
+
case 12:
|
|
5811
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5812
|
+
msg.setProviderImageCdn(value);
|
|
5813
|
+
break;
|
|
5814
|
+
case 13:
|
|
5757
5815
|
var value = /** @type {string} */ (reader.readString());
|
|
5758
5816
|
msg.setCode(value);
|
|
5759
5817
|
break;
|
|
@@ -5828,16 +5886,16 @@ proto.payment.MethodItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
5828
5886
|
f
|
|
5829
5887
|
);
|
|
5830
5888
|
}
|
|
5831
|
-
f = /** @type {
|
|
5889
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
5832
5890
|
if (f != null) {
|
|
5833
|
-
writer.
|
|
5891
|
+
writer.writeString(
|
|
5834
5892
|
8,
|
|
5835
5893
|
f
|
|
5836
5894
|
);
|
|
5837
5895
|
}
|
|
5838
|
-
f = /** @type {
|
|
5896
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 9));
|
|
5839
5897
|
if (f != null) {
|
|
5840
|
-
writer.
|
|
5898
|
+
writer.writeInt32(
|
|
5841
5899
|
9,
|
|
5842
5900
|
f
|
|
5843
5901
|
);
|
|
@@ -5856,6 +5914,20 @@ proto.payment.MethodItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
5856
5914
|
f
|
|
5857
5915
|
);
|
|
5858
5916
|
}
|
|
5917
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
|
5918
|
+
if (f != null) {
|
|
5919
|
+
writer.writeString(
|
|
5920
|
+
12,
|
|
5921
|
+
f
|
|
5922
|
+
);
|
|
5923
|
+
}
|
|
5924
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
5925
|
+
if (f != null) {
|
|
5926
|
+
writer.writeString(
|
|
5927
|
+
13,
|
|
5928
|
+
f
|
|
5929
|
+
);
|
|
5930
|
+
}
|
|
5859
5931
|
};
|
|
5860
5932
|
|
|
5861
5933
|
|
|
@@ -6040,10 +6112,10 @@ proto.payment.MethodItem.prototype.hasImage = function() {
|
|
|
6040
6112
|
|
|
6041
6113
|
|
|
6042
6114
|
/**
|
|
6043
|
-
* optional string
|
|
6115
|
+
* optional string image_cdn = 7;
|
|
6044
6116
|
* @return {string}
|
|
6045
6117
|
*/
|
|
6046
|
-
proto.payment.MethodItem.prototype.
|
|
6118
|
+
proto.payment.MethodItem.prototype.getImageCdn = function() {
|
|
6047
6119
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
6048
6120
|
};
|
|
6049
6121
|
|
|
@@ -6052,7 +6124,7 @@ proto.payment.MethodItem.prototype.getTransactionType = function() {
|
|
|
6052
6124
|
* @param {string} value
|
|
6053
6125
|
* @return {!proto.payment.MethodItem} returns this
|
|
6054
6126
|
*/
|
|
6055
|
-
proto.payment.MethodItem.prototype.
|
|
6127
|
+
proto.payment.MethodItem.prototype.setImageCdn = function(value) {
|
|
6056
6128
|
return jspb.Message.setField(this, 7, value);
|
|
6057
6129
|
};
|
|
6058
6130
|
|
|
@@ -6061,7 +6133,7 @@ proto.payment.MethodItem.prototype.setTransactionType = function(value) {
|
|
|
6061
6133
|
* Clears the field making it undefined.
|
|
6062
6134
|
* @return {!proto.payment.MethodItem} returns this
|
|
6063
6135
|
*/
|
|
6064
|
-
proto.payment.MethodItem.prototype.
|
|
6136
|
+
proto.payment.MethodItem.prototype.clearImageCdn = function() {
|
|
6065
6137
|
return jspb.Message.setField(this, 7, undefined);
|
|
6066
6138
|
};
|
|
6067
6139
|
|
|
@@ -6070,17 +6142,53 @@ proto.payment.MethodItem.prototype.clearTransactionType = function() {
|
|
|
6070
6142
|
* Returns whether this field is set.
|
|
6071
6143
|
* @return {boolean}
|
|
6072
6144
|
*/
|
|
6073
|
-
proto.payment.MethodItem.prototype.
|
|
6145
|
+
proto.payment.MethodItem.prototype.hasImageCdn = function() {
|
|
6074
6146
|
return jspb.Message.getField(this, 7) != null;
|
|
6075
6147
|
};
|
|
6076
6148
|
|
|
6077
6149
|
|
|
6078
6150
|
/**
|
|
6079
|
-
* optional
|
|
6151
|
+
* optional string transaction_type = 8;
|
|
6152
|
+
* @return {string}
|
|
6153
|
+
*/
|
|
6154
|
+
proto.payment.MethodItem.prototype.getTransactionType = function() {
|
|
6155
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
6156
|
+
};
|
|
6157
|
+
|
|
6158
|
+
|
|
6159
|
+
/**
|
|
6160
|
+
* @param {string} value
|
|
6161
|
+
* @return {!proto.payment.MethodItem} returns this
|
|
6162
|
+
*/
|
|
6163
|
+
proto.payment.MethodItem.prototype.setTransactionType = function(value) {
|
|
6164
|
+
return jspb.Message.setField(this, 8, value);
|
|
6165
|
+
};
|
|
6166
|
+
|
|
6167
|
+
|
|
6168
|
+
/**
|
|
6169
|
+
* Clears the field making it undefined.
|
|
6170
|
+
* @return {!proto.payment.MethodItem} returns this
|
|
6171
|
+
*/
|
|
6172
|
+
proto.payment.MethodItem.prototype.clearTransactionType = function() {
|
|
6173
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
6174
|
+
};
|
|
6175
|
+
|
|
6176
|
+
|
|
6177
|
+
/**
|
|
6178
|
+
* Returns whether this field is set.
|
|
6179
|
+
* @return {boolean}
|
|
6180
|
+
*/
|
|
6181
|
+
proto.payment.MethodItem.prototype.hasTransactionType = function() {
|
|
6182
|
+
return jspb.Message.getField(this, 8) != null;
|
|
6183
|
+
};
|
|
6184
|
+
|
|
6185
|
+
|
|
6186
|
+
/**
|
|
6187
|
+
* optional int32 provider_id = 9;
|
|
6080
6188
|
* @return {number}
|
|
6081
6189
|
*/
|
|
6082
6190
|
proto.payment.MethodItem.prototype.getProviderId = function() {
|
|
6083
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
6191
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
|
|
6084
6192
|
};
|
|
6085
6193
|
|
|
6086
6194
|
|
|
@@ -6089,7 +6197,7 @@ proto.payment.MethodItem.prototype.getProviderId = function() {
|
|
|
6089
6197
|
* @return {!proto.payment.MethodItem} returns this
|
|
6090
6198
|
*/
|
|
6091
6199
|
proto.payment.MethodItem.prototype.setProviderId = function(value) {
|
|
6092
|
-
return jspb.Message.setField(this,
|
|
6200
|
+
return jspb.Message.setField(this, 9, value);
|
|
6093
6201
|
};
|
|
6094
6202
|
|
|
6095
6203
|
|
|
@@ -6098,7 +6206,7 @@ proto.payment.MethodItem.prototype.setProviderId = function(value) {
|
|
|
6098
6206
|
* @return {!proto.payment.MethodItem} returns this
|
|
6099
6207
|
*/
|
|
6100
6208
|
proto.payment.MethodItem.prototype.clearProviderId = function() {
|
|
6101
|
-
return jspb.Message.setField(this,
|
|
6209
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
6102
6210
|
};
|
|
6103
6211
|
|
|
6104
6212
|
|
|
@@ -6107,16 +6215,16 @@ proto.payment.MethodItem.prototype.clearProviderId = function() {
|
|
|
6107
6215
|
* @return {boolean}
|
|
6108
6216
|
*/
|
|
6109
6217
|
proto.payment.MethodItem.prototype.hasProviderId = function() {
|
|
6110
|
-
return jspb.Message.getField(this,
|
|
6218
|
+
return jspb.Message.getField(this, 9) != null;
|
|
6111
6219
|
};
|
|
6112
6220
|
|
|
6113
6221
|
|
|
6114
6222
|
/**
|
|
6115
|
-
* optional string provider_title =
|
|
6223
|
+
* optional string provider_title = 10;
|
|
6116
6224
|
* @return {string}
|
|
6117
6225
|
*/
|
|
6118
6226
|
proto.payment.MethodItem.prototype.getProviderTitle = function() {
|
|
6119
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6227
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
6120
6228
|
};
|
|
6121
6229
|
|
|
6122
6230
|
|
|
@@ -6125,7 +6233,7 @@ proto.payment.MethodItem.prototype.getProviderTitle = function() {
|
|
|
6125
6233
|
* @return {!proto.payment.MethodItem} returns this
|
|
6126
6234
|
*/
|
|
6127
6235
|
proto.payment.MethodItem.prototype.setProviderTitle = function(value) {
|
|
6128
|
-
return jspb.Message.setField(this,
|
|
6236
|
+
return jspb.Message.setField(this, 10, value);
|
|
6129
6237
|
};
|
|
6130
6238
|
|
|
6131
6239
|
|
|
@@ -6134,7 +6242,7 @@ proto.payment.MethodItem.prototype.setProviderTitle = function(value) {
|
|
|
6134
6242
|
* @return {!proto.payment.MethodItem} returns this
|
|
6135
6243
|
*/
|
|
6136
6244
|
proto.payment.MethodItem.prototype.clearProviderTitle = function() {
|
|
6137
|
-
return jspb.Message.setField(this,
|
|
6245
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
6138
6246
|
};
|
|
6139
6247
|
|
|
6140
6248
|
|
|
@@ -6143,16 +6251,16 @@ proto.payment.MethodItem.prototype.clearProviderTitle = function() {
|
|
|
6143
6251
|
* @return {boolean}
|
|
6144
6252
|
*/
|
|
6145
6253
|
proto.payment.MethodItem.prototype.hasProviderTitle = function() {
|
|
6146
|
-
return jspb.Message.getField(this,
|
|
6254
|
+
return jspb.Message.getField(this, 10) != null;
|
|
6147
6255
|
};
|
|
6148
6256
|
|
|
6149
6257
|
|
|
6150
6258
|
/**
|
|
6151
|
-
* optional string provider_image =
|
|
6259
|
+
* optional string provider_image = 11;
|
|
6152
6260
|
* @return {string}
|
|
6153
6261
|
*/
|
|
6154
6262
|
proto.payment.MethodItem.prototype.getProviderImage = function() {
|
|
6155
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6263
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
6156
6264
|
};
|
|
6157
6265
|
|
|
6158
6266
|
|
|
@@ -6161,7 +6269,7 @@ proto.payment.MethodItem.prototype.getProviderImage = function() {
|
|
|
6161
6269
|
* @return {!proto.payment.MethodItem} returns this
|
|
6162
6270
|
*/
|
|
6163
6271
|
proto.payment.MethodItem.prototype.setProviderImage = function(value) {
|
|
6164
|
-
return jspb.Message.setField(this,
|
|
6272
|
+
return jspb.Message.setField(this, 11, value);
|
|
6165
6273
|
};
|
|
6166
6274
|
|
|
6167
6275
|
|
|
@@ -6170,7 +6278,7 @@ proto.payment.MethodItem.prototype.setProviderImage = function(value) {
|
|
|
6170
6278
|
* @return {!proto.payment.MethodItem} returns this
|
|
6171
6279
|
*/
|
|
6172
6280
|
proto.payment.MethodItem.prototype.clearProviderImage = function() {
|
|
6173
|
-
return jspb.Message.setField(this,
|
|
6281
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
6174
6282
|
};
|
|
6175
6283
|
|
|
6176
6284
|
|
|
@@ -6179,16 +6287,52 @@ proto.payment.MethodItem.prototype.clearProviderImage = function() {
|
|
|
6179
6287
|
* @return {boolean}
|
|
6180
6288
|
*/
|
|
6181
6289
|
proto.payment.MethodItem.prototype.hasProviderImage = function() {
|
|
6182
|
-
return jspb.Message.getField(this,
|
|
6290
|
+
return jspb.Message.getField(this, 11) != null;
|
|
6291
|
+
};
|
|
6292
|
+
|
|
6293
|
+
|
|
6294
|
+
/**
|
|
6295
|
+
* optional string provider_image_cdn = 12;
|
|
6296
|
+
* @return {string}
|
|
6297
|
+
*/
|
|
6298
|
+
proto.payment.MethodItem.prototype.getProviderImageCdn = function() {
|
|
6299
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
6300
|
+
};
|
|
6301
|
+
|
|
6302
|
+
|
|
6303
|
+
/**
|
|
6304
|
+
* @param {string} value
|
|
6305
|
+
* @return {!proto.payment.MethodItem} returns this
|
|
6306
|
+
*/
|
|
6307
|
+
proto.payment.MethodItem.prototype.setProviderImageCdn = function(value) {
|
|
6308
|
+
return jspb.Message.setField(this, 12, value);
|
|
6183
6309
|
};
|
|
6184
6310
|
|
|
6185
6311
|
|
|
6186
6312
|
/**
|
|
6187
|
-
*
|
|
6313
|
+
* Clears the field making it undefined.
|
|
6314
|
+
* @return {!proto.payment.MethodItem} returns this
|
|
6315
|
+
*/
|
|
6316
|
+
proto.payment.MethodItem.prototype.clearProviderImageCdn = function() {
|
|
6317
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
6318
|
+
};
|
|
6319
|
+
|
|
6320
|
+
|
|
6321
|
+
/**
|
|
6322
|
+
* Returns whether this field is set.
|
|
6323
|
+
* @return {boolean}
|
|
6324
|
+
*/
|
|
6325
|
+
proto.payment.MethodItem.prototype.hasProviderImageCdn = function() {
|
|
6326
|
+
return jspb.Message.getField(this, 12) != null;
|
|
6327
|
+
};
|
|
6328
|
+
|
|
6329
|
+
|
|
6330
|
+
/**
|
|
6331
|
+
* optional string code = 13;
|
|
6188
6332
|
* @return {string}
|
|
6189
6333
|
*/
|
|
6190
6334
|
proto.payment.MethodItem.prototype.getCode = function() {
|
|
6191
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6335
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
6192
6336
|
};
|
|
6193
6337
|
|
|
6194
6338
|
|
|
@@ -6197,7 +6341,7 @@ proto.payment.MethodItem.prototype.getCode = function() {
|
|
|
6197
6341
|
* @return {!proto.payment.MethodItem} returns this
|
|
6198
6342
|
*/
|
|
6199
6343
|
proto.payment.MethodItem.prototype.setCode = function(value) {
|
|
6200
|
-
return jspb.Message.setField(this,
|
|
6344
|
+
return jspb.Message.setField(this, 13, value);
|
|
6201
6345
|
};
|
|
6202
6346
|
|
|
6203
6347
|
|
|
@@ -6206,7 +6350,7 @@ proto.payment.MethodItem.prototype.setCode = function(value) {
|
|
|
6206
6350
|
* @return {!proto.payment.MethodItem} returns this
|
|
6207
6351
|
*/
|
|
6208
6352
|
proto.payment.MethodItem.prototype.clearCode = function() {
|
|
6209
|
-
return jspb.Message.setField(this,
|
|
6353
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
6210
6354
|
};
|
|
6211
6355
|
|
|
6212
6356
|
|
|
@@ -6215,7 +6359,7 @@ proto.payment.MethodItem.prototype.clearCode = function() {
|
|
|
6215
6359
|
* @return {boolean}
|
|
6216
6360
|
*/
|
|
6217
6361
|
proto.payment.MethodItem.prototype.hasCode = function() {
|
|
6218
|
-
return jspb.Message.getField(this,
|
|
6362
|
+
return jspb.Message.getField(this, 13) != null;
|
|
6219
6363
|
};
|
|
6220
6364
|
|
|
6221
6365
|
|