protobuf-platform 1.2.184 → 1.2.185
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 +9 -7
- package/payment/payment_pb.js +146 -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,12 @@ 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 code = 12;
|
|
146
148
|
}
|
|
147
149
|
message MethodRequest {
|
|
148
150
|
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,12 @@ 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
|
+
code: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
5684
5733
|
};
|
|
5685
5734
|
|
|
5686
5735
|
if (includeInstance) {
|
|
@@ -5739,21 +5788,25 @@ proto.payment.MethodItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
5739
5788
|
break;
|
|
5740
5789
|
case 7:
|
|
5741
5790
|
var value = /** @type {string} */ (reader.readString());
|
|
5742
|
-
msg.
|
|
5791
|
+
msg.setImageCdn(value);
|
|
5743
5792
|
break;
|
|
5744
5793
|
case 8:
|
|
5794
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5795
|
+
msg.setTransactionType(value);
|
|
5796
|
+
break;
|
|
5797
|
+
case 9:
|
|
5745
5798
|
var value = /** @type {number} */ (reader.readInt32());
|
|
5746
5799
|
msg.setProviderId(value);
|
|
5747
5800
|
break;
|
|
5748
|
-
case
|
|
5801
|
+
case 10:
|
|
5749
5802
|
var value = /** @type {string} */ (reader.readString());
|
|
5750
5803
|
msg.setProviderTitle(value);
|
|
5751
5804
|
break;
|
|
5752
|
-
case
|
|
5805
|
+
case 11:
|
|
5753
5806
|
var value = /** @type {string} */ (reader.readString());
|
|
5754
5807
|
msg.setProviderImage(value);
|
|
5755
5808
|
break;
|
|
5756
|
-
case
|
|
5809
|
+
case 12:
|
|
5757
5810
|
var value = /** @type {string} */ (reader.readString());
|
|
5758
5811
|
msg.setCode(value);
|
|
5759
5812
|
break;
|
|
@@ -5828,16 +5881,16 @@ proto.payment.MethodItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
5828
5881
|
f
|
|
5829
5882
|
);
|
|
5830
5883
|
}
|
|
5831
|
-
f = /** @type {
|
|
5884
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
5832
5885
|
if (f != null) {
|
|
5833
|
-
writer.
|
|
5886
|
+
writer.writeString(
|
|
5834
5887
|
8,
|
|
5835
5888
|
f
|
|
5836
5889
|
);
|
|
5837
5890
|
}
|
|
5838
|
-
f = /** @type {
|
|
5891
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 9));
|
|
5839
5892
|
if (f != null) {
|
|
5840
|
-
writer.
|
|
5893
|
+
writer.writeInt32(
|
|
5841
5894
|
9,
|
|
5842
5895
|
f
|
|
5843
5896
|
);
|
|
@@ -5856,6 +5909,13 @@ proto.payment.MethodItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
5856
5909
|
f
|
|
5857
5910
|
);
|
|
5858
5911
|
}
|
|
5912
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
|
5913
|
+
if (f != null) {
|
|
5914
|
+
writer.writeString(
|
|
5915
|
+
12,
|
|
5916
|
+
f
|
|
5917
|
+
);
|
|
5918
|
+
}
|
|
5859
5919
|
};
|
|
5860
5920
|
|
|
5861
5921
|
|
|
@@ -6040,10 +6100,10 @@ proto.payment.MethodItem.prototype.hasImage = function() {
|
|
|
6040
6100
|
|
|
6041
6101
|
|
|
6042
6102
|
/**
|
|
6043
|
-
* optional string
|
|
6103
|
+
* optional string image_cdn = 7;
|
|
6044
6104
|
* @return {string}
|
|
6045
6105
|
*/
|
|
6046
|
-
proto.payment.MethodItem.prototype.
|
|
6106
|
+
proto.payment.MethodItem.prototype.getImageCdn = function() {
|
|
6047
6107
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
6048
6108
|
};
|
|
6049
6109
|
|
|
@@ -6052,7 +6112,7 @@ proto.payment.MethodItem.prototype.getTransactionType = function() {
|
|
|
6052
6112
|
* @param {string} value
|
|
6053
6113
|
* @return {!proto.payment.MethodItem} returns this
|
|
6054
6114
|
*/
|
|
6055
|
-
proto.payment.MethodItem.prototype.
|
|
6115
|
+
proto.payment.MethodItem.prototype.setImageCdn = function(value) {
|
|
6056
6116
|
return jspb.Message.setField(this, 7, value);
|
|
6057
6117
|
};
|
|
6058
6118
|
|
|
@@ -6061,7 +6121,7 @@ proto.payment.MethodItem.prototype.setTransactionType = function(value) {
|
|
|
6061
6121
|
* Clears the field making it undefined.
|
|
6062
6122
|
* @return {!proto.payment.MethodItem} returns this
|
|
6063
6123
|
*/
|
|
6064
|
-
proto.payment.MethodItem.prototype.
|
|
6124
|
+
proto.payment.MethodItem.prototype.clearImageCdn = function() {
|
|
6065
6125
|
return jspb.Message.setField(this, 7, undefined);
|
|
6066
6126
|
};
|
|
6067
6127
|
|
|
@@ -6070,17 +6130,53 @@ proto.payment.MethodItem.prototype.clearTransactionType = function() {
|
|
|
6070
6130
|
* Returns whether this field is set.
|
|
6071
6131
|
* @return {boolean}
|
|
6072
6132
|
*/
|
|
6073
|
-
proto.payment.MethodItem.prototype.
|
|
6133
|
+
proto.payment.MethodItem.prototype.hasImageCdn = function() {
|
|
6074
6134
|
return jspb.Message.getField(this, 7) != null;
|
|
6075
6135
|
};
|
|
6076
6136
|
|
|
6077
6137
|
|
|
6078
6138
|
/**
|
|
6079
|
-
* optional
|
|
6139
|
+
* optional string transaction_type = 8;
|
|
6140
|
+
* @return {string}
|
|
6141
|
+
*/
|
|
6142
|
+
proto.payment.MethodItem.prototype.getTransactionType = function() {
|
|
6143
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
6144
|
+
};
|
|
6145
|
+
|
|
6146
|
+
|
|
6147
|
+
/**
|
|
6148
|
+
* @param {string} value
|
|
6149
|
+
* @return {!proto.payment.MethodItem} returns this
|
|
6150
|
+
*/
|
|
6151
|
+
proto.payment.MethodItem.prototype.setTransactionType = function(value) {
|
|
6152
|
+
return jspb.Message.setField(this, 8, value);
|
|
6153
|
+
};
|
|
6154
|
+
|
|
6155
|
+
|
|
6156
|
+
/**
|
|
6157
|
+
* Clears the field making it undefined.
|
|
6158
|
+
* @return {!proto.payment.MethodItem} returns this
|
|
6159
|
+
*/
|
|
6160
|
+
proto.payment.MethodItem.prototype.clearTransactionType = function() {
|
|
6161
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
6162
|
+
};
|
|
6163
|
+
|
|
6164
|
+
|
|
6165
|
+
/**
|
|
6166
|
+
* Returns whether this field is set.
|
|
6167
|
+
* @return {boolean}
|
|
6168
|
+
*/
|
|
6169
|
+
proto.payment.MethodItem.prototype.hasTransactionType = function() {
|
|
6170
|
+
return jspb.Message.getField(this, 8) != null;
|
|
6171
|
+
};
|
|
6172
|
+
|
|
6173
|
+
|
|
6174
|
+
/**
|
|
6175
|
+
* optional int32 provider_id = 9;
|
|
6080
6176
|
* @return {number}
|
|
6081
6177
|
*/
|
|
6082
6178
|
proto.payment.MethodItem.prototype.getProviderId = function() {
|
|
6083
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
6179
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
|
|
6084
6180
|
};
|
|
6085
6181
|
|
|
6086
6182
|
|
|
@@ -6089,7 +6185,7 @@ proto.payment.MethodItem.prototype.getProviderId = function() {
|
|
|
6089
6185
|
* @return {!proto.payment.MethodItem} returns this
|
|
6090
6186
|
*/
|
|
6091
6187
|
proto.payment.MethodItem.prototype.setProviderId = function(value) {
|
|
6092
|
-
return jspb.Message.setField(this,
|
|
6188
|
+
return jspb.Message.setField(this, 9, value);
|
|
6093
6189
|
};
|
|
6094
6190
|
|
|
6095
6191
|
|
|
@@ -6098,7 +6194,7 @@ proto.payment.MethodItem.prototype.setProviderId = function(value) {
|
|
|
6098
6194
|
* @return {!proto.payment.MethodItem} returns this
|
|
6099
6195
|
*/
|
|
6100
6196
|
proto.payment.MethodItem.prototype.clearProviderId = function() {
|
|
6101
|
-
return jspb.Message.setField(this,
|
|
6197
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
6102
6198
|
};
|
|
6103
6199
|
|
|
6104
6200
|
|
|
@@ -6107,16 +6203,16 @@ proto.payment.MethodItem.prototype.clearProviderId = function() {
|
|
|
6107
6203
|
* @return {boolean}
|
|
6108
6204
|
*/
|
|
6109
6205
|
proto.payment.MethodItem.prototype.hasProviderId = function() {
|
|
6110
|
-
return jspb.Message.getField(this,
|
|
6206
|
+
return jspb.Message.getField(this, 9) != null;
|
|
6111
6207
|
};
|
|
6112
6208
|
|
|
6113
6209
|
|
|
6114
6210
|
/**
|
|
6115
|
-
* optional string provider_title =
|
|
6211
|
+
* optional string provider_title = 10;
|
|
6116
6212
|
* @return {string}
|
|
6117
6213
|
*/
|
|
6118
6214
|
proto.payment.MethodItem.prototype.getProviderTitle = function() {
|
|
6119
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6215
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
6120
6216
|
};
|
|
6121
6217
|
|
|
6122
6218
|
|
|
@@ -6125,7 +6221,7 @@ proto.payment.MethodItem.prototype.getProviderTitle = function() {
|
|
|
6125
6221
|
* @return {!proto.payment.MethodItem} returns this
|
|
6126
6222
|
*/
|
|
6127
6223
|
proto.payment.MethodItem.prototype.setProviderTitle = function(value) {
|
|
6128
|
-
return jspb.Message.setField(this,
|
|
6224
|
+
return jspb.Message.setField(this, 10, value);
|
|
6129
6225
|
};
|
|
6130
6226
|
|
|
6131
6227
|
|
|
@@ -6134,7 +6230,7 @@ proto.payment.MethodItem.prototype.setProviderTitle = function(value) {
|
|
|
6134
6230
|
* @return {!proto.payment.MethodItem} returns this
|
|
6135
6231
|
*/
|
|
6136
6232
|
proto.payment.MethodItem.prototype.clearProviderTitle = function() {
|
|
6137
|
-
return jspb.Message.setField(this,
|
|
6233
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
6138
6234
|
};
|
|
6139
6235
|
|
|
6140
6236
|
|
|
@@ -6143,16 +6239,16 @@ proto.payment.MethodItem.prototype.clearProviderTitle = function() {
|
|
|
6143
6239
|
* @return {boolean}
|
|
6144
6240
|
*/
|
|
6145
6241
|
proto.payment.MethodItem.prototype.hasProviderTitle = function() {
|
|
6146
|
-
return jspb.Message.getField(this,
|
|
6242
|
+
return jspb.Message.getField(this, 10) != null;
|
|
6147
6243
|
};
|
|
6148
6244
|
|
|
6149
6245
|
|
|
6150
6246
|
/**
|
|
6151
|
-
* optional string provider_image =
|
|
6247
|
+
* optional string provider_image = 11;
|
|
6152
6248
|
* @return {string}
|
|
6153
6249
|
*/
|
|
6154
6250
|
proto.payment.MethodItem.prototype.getProviderImage = function() {
|
|
6155
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6251
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
6156
6252
|
};
|
|
6157
6253
|
|
|
6158
6254
|
|
|
@@ -6161,7 +6257,7 @@ proto.payment.MethodItem.prototype.getProviderImage = function() {
|
|
|
6161
6257
|
* @return {!proto.payment.MethodItem} returns this
|
|
6162
6258
|
*/
|
|
6163
6259
|
proto.payment.MethodItem.prototype.setProviderImage = function(value) {
|
|
6164
|
-
return jspb.Message.setField(this,
|
|
6260
|
+
return jspb.Message.setField(this, 11, value);
|
|
6165
6261
|
};
|
|
6166
6262
|
|
|
6167
6263
|
|
|
@@ -6170,7 +6266,7 @@ proto.payment.MethodItem.prototype.setProviderImage = function(value) {
|
|
|
6170
6266
|
* @return {!proto.payment.MethodItem} returns this
|
|
6171
6267
|
*/
|
|
6172
6268
|
proto.payment.MethodItem.prototype.clearProviderImage = function() {
|
|
6173
|
-
return jspb.Message.setField(this,
|
|
6269
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
6174
6270
|
};
|
|
6175
6271
|
|
|
6176
6272
|
|
|
@@ -6179,16 +6275,16 @@ proto.payment.MethodItem.prototype.clearProviderImage = function() {
|
|
|
6179
6275
|
* @return {boolean}
|
|
6180
6276
|
*/
|
|
6181
6277
|
proto.payment.MethodItem.prototype.hasProviderImage = function() {
|
|
6182
|
-
return jspb.Message.getField(this,
|
|
6278
|
+
return jspb.Message.getField(this, 11) != null;
|
|
6183
6279
|
};
|
|
6184
6280
|
|
|
6185
6281
|
|
|
6186
6282
|
/**
|
|
6187
|
-
* optional string code =
|
|
6283
|
+
* optional string code = 12;
|
|
6188
6284
|
* @return {string}
|
|
6189
6285
|
*/
|
|
6190
6286
|
proto.payment.MethodItem.prototype.getCode = function() {
|
|
6191
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6287
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
6192
6288
|
};
|
|
6193
6289
|
|
|
6194
6290
|
|
|
@@ -6197,7 +6293,7 @@ proto.payment.MethodItem.prototype.getCode = function() {
|
|
|
6197
6293
|
* @return {!proto.payment.MethodItem} returns this
|
|
6198
6294
|
*/
|
|
6199
6295
|
proto.payment.MethodItem.prototype.setCode = function(value) {
|
|
6200
|
-
return jspb.Message.setField(this,
|
|
6296
|
+
return jspb.Message.setField(this, 12, value);
|
|
6201
6297
|
};
|
|
6202
6298
|
|
|
6203
6299
|
|
|
@@ -6206,7 +6302,7 @@ proto.payment.MethodItem.prototype.setCode = function(value) {
|
|
|
6206
6302
|
* @return {!proto.payment.MethodItem} returns this
|
|
6207
6303
|
*/
|
|
6208
6304
|
proto.payment.MethodItem.prototype.clearCode = function() {
|
|
6209
|
-
return jspb.Message.setField(this,
|
|
6305
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
6210
6306
|
};
|
|
6211
6307
|
|
|
6212
6308
|
|
|
@@ -6215,7 +6311,7 @@ proto.payment.MethodItem.prototype.clearCode = function() {
|
|
|
6215
6311
|
* @return {boolean}
|
|
6216
6312
|
*/
|
|
6217
6313
|
proto.payment.MethodItem.prototype.hasCode = function() {
|
|
6218
|
-
return jspb.Message.getField(this,
|
|
6314
|
+
return jspb.Message.getField(this, 12) != null;
|
|
6219
6315
|
};
|
|
6220
6316
|
|
|
6221
6317
|
|