@sniipwebmaster/payment-methods-client-grpcweb-ts 23.16.5329
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/dependancies/ServiceServiceClientPb.ts +1678 -0
- package/dependancies/google/api/annotations_pb.js +42 -0
- package/dependancies/google/api/http_pb.js +911 -0
- package/dependancies/grpcweb/README.txt +11 -0
- package/dependancies/grpcweb/google-protobuf/google/protobuf/README +5 -0
- package/dependancies/grpcweb/google-protobuf/google/protobuf/empty_pb.js +131 -0
- package/dependancies/protoc-gen-openapiv2/options/annotations_pb.js +42 -0
- package/dependancies/protoc-gen-openapiv2/options/http_pb.js +911 -0
- package/dependancies/service_pb.d.ts +2693 -0
- package/dependancies/service_pb.js +22222 -0
- package/index.js +4 -0
- package/package.json +11 -0
|
@@ -0,0 +1,2693 @@
|
|
|
1
|
+
import * as jspb from 'google-protobuf'
|
|
2
|
+
|
|
3
|
+
import * as google_api_annotations_pb from './google/api/annotations_pb';
|
|
4
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export class AcceptedPaymentMethod extends jspb.Message {
|
|
8
|
+
getPaymenttype(): string;
|
|
9
|
+
setPaymenttype(value: string): AcceptedPaymentMethod;
|
|
10
|
+
|
|
11
|
+
getAllowdebit(): boolean;
|
|
12
|
+
setAllowdebit(value: boolean): AcceptedPaymentMethod;
|
|
13
|
+
|
|
14
|
+
getAllowcredit(): boolean;
|
|
15
|
+
setAllowcredit(value: boolean): AcceptedPaymentMethod;
|
|
16
|
+
|
|
17
|
+
getEftposonly(): boolean;
|
|
18
|
+
setEftposonly(value: boolean): AcceptedPaymentMethod;
|
|
19
|
+
|
|
20
|
+
getAllowinternational(): boolean;
|
|
21
|
+
setAllowinternational(value: boolean): AcceptedPaymentMethod;
|
|
22
|
+
|
|
23
|
+
getAllowprepaid(): boolean;
|
|
24
|
+
setAllowprepaid(value: boolean): AcceptedPaymentMethod;
|
|
25
|
+
|
|
26
|
+
getAllowcryptocom(): boolean;
|
|
27
|
+
setAllowcryptocom(value: boolean): AcceptedPaymentMethod;
|
|
28
|
+
|
|
29
|
+
serializeBinary(): Uint8Array;
|
|
30
|
+
toObject(includeInstance?: boolean): AcceptedPaymentMethod.AsObject;
|
|
31
|
+
static toObject(includeInstance: boolean, msg: AcceptedPaymentMethod): AcceptedPaymentMethod.AsObject;
|
|
32
|
+
static serializeBinaryToWriter(message: AcceptedPaymentMethod, writer: jspb.BinaryWriter): void;
|
|
33
|
+
static deserializeBinary(bytes: Uint8Array): AcceptedPaymentMethod;
|
|
34
|
+
static deserializeBinaryFromReader(message: AcceptedPaymentMethod, reader: jspb.BinaryReader): AcceptedPaymentMethod;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export namespace AcceptedPaymentMethod {
|
|
38
|
+
export type AsObject = {
|
|
39
|
+
paymenttype: string,
|
|
40
|
+
allowdebit: boolean,
|
|
41
|
+
allowcredit: boolean,
|
|
42
|
+
eftposonly: boolean,
|
|
43
|
+
allowinternational: boolean,
|
|
44
|
+
allowprepaid: boolean,
|
|
45
|
+
allowcryptocom: boolean,
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export class AcceptedPaymentMethodResponse extends jspb.Message {
|
|
50
|
+
getResponsecode(): ResponseCode | undefined;
|
|
51
|
+
setResponsecode(value?: ResponseCode): AcceptedPaymentMethodResponse;
|
|
52
|
+
hasResponsecode(): boolean;
|
|
53
|
+
clearResponsecode(): AcceptedPaymentMethodResponse;
|
|
54
|
+
|
|
55
|
+
getAcceptedpaymentmethodsList(): Array<AcceptedPaymentMethod>;
|
|
56
|
+
setAcceptedpaymentmethodsList(value: Array<AcceptedPaymentMethod>): AcceptedPaymentMethodResponse;
|
|
57
|
+
clearAcceptedpaymentmethodsList(): AcceptedPaymentMethodResponse;
|
|
58
|
+
addAcceptedpaymentmethods(value?: AcceptedPaymentMethod, index?: number): AcceptedPaymentMethod;
|
|
59
|
+
|
|
60
|
+
serializeBinary(): Uint8Array;
|
|
61
|
+
toObject(includeInstance?: boolean): AcceptedPaymentMethodResponse.AsObject;
|
|
62
|
+
static toObject(includeInstance: boolean, msg: AcceptedPaymentMethodResponse): AcceptedPaymentMethodResponse.AsObject;
|
|
63
|
+
static serializeBinaryToWriter(message: AcceptedPaymentMethodResponse, writer: jspb.BinaryWriter): void;
|
|
64
|
+
static deserializeBinary(bytes: Uint8Array): AcceptedPaymentMethodResponse;
|
|
65
|
+
static deserializeBinaryFromReader(message: AcceptedPaymentMethodResponse, reader: jspb.BinaryReader): AcceptedPaymentMethodResponse;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export namespace AcceptedPaymentMethodResponse {
|
|
69
|
+
export type AsObject = {
|
|
70
|
+
responsecode?: ResponseCode.AsObject,
|
|
71
|
+
acceptedpaymentmethodsList: Array<AcceptedPaymentMethod.AsObject>,
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export class AccessToken extends jspb.Message {
|
|
76
|
+
getAccesstoken(): string;
|
|
77
|
+
setAccesstoken(value: string): AccessToken;
|
|
78
|
+
|
|
79
|
+
serializeBinary(): Uint8Array;
|
|
80
|
+
toObject(includeInstance?: boolean): AccessToken.AsObject;
|
|
81
|
+
static toObject(includeInstance: boolean, msg: AccessToken): AccessToken.AsObject;
|
|
82
|
+
static serializeBinaryToWriter(message: AccessToken, writer: jspb.BinaryWriter): void;
|
|
83
|
+
static deserializeBinary(bytes: Uint8Array): AccessToken;
|
|
84
|
+
static deserializeBinaryFromReader(message: AccessToken, reader: jspb.BinaryReader): AccessToken;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export namespace AccessToken {
|
|
88
|
+
export type AsObject = {
|
|
89
|
+
accesstoken: string,
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export class ActivatePaymentDetailRequest extends jspb.Message {
|
|
94
|
+
getData(): ActivateRequest | undefined;
|
|
95
|
+
setData(value?: ActivateRequest): ActivatePaymentDetailRequest;
|
|
96
|
+
hasData(): boolean;
|
|
97
|
+
clearData(): ActivatePaymentDetailRequest;
|
|
98
|
+
|
|
99
|
+
serializeBinary(): Uint8Array;
|
|
100
|
+
toObject(includeInstance?: boolean): ActivatePaymentDetailRequest.AsObject;
|
|
101
|
+
static toObject(includeInstance: boolean, msg: ActivatePaymentDetailRequest): ActivatePaymentDetailRequest.AsObject;
|
|
102
|
+
static serializeBinaryToWriter(message: ActivatePaymentDetailRequest, writer: jspb.BinaryWriter): void;
|
|
103
|
+
static deserializeBinary(bytes: Uint8Array): ActivatePaymentDetailRequest;
|
|
104
|
+
static deserializeBinaryFromReader(message: ActivatePaymentDetailRequest, reader: jspb.BinaryReader): ActivatePaymentDetailRequest;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export namespace ActivatePaymentDetailRequest {
|
|
108
|
+
export type AsObject = {
|
|
109
|
+
data?: ActivateRequest.AsObject,
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export class ActivateRequest extends jspb.Message {
|
|
114
|
+
getAccesstoken(): string;
|
|
115
|
+
setAccesstoken(value: string): ActivateRequest;
|
|
116
|
+
|
|
117
|
+
getSource(): string;
|
|
118
|
+
setSource(value: string): ActivateRequest;
|
|
119
|
+
|
|
120
|
+
getSourceid(): number;
|
|
121
|
+
setSourceid(value: number): ActivateRequest;
|
|
122
|
+
|
|
123
|
+
getActivationname(): string;
|
|
124
|
+
setActivationname(value: string): ActivateRequest;
|
|
125
|
+
|
|
126
|
+
getPaymentdetailid(): number;
|
|
127
|
+
setPaymentdetailid(value: number): ActivateRequest;
|
|
128
|
+
|
|
129
|
+
serializeBinary(): Uint8Array;
|
|
130
|
+
toObject(includeInstance?: boolean): ActivateRequest.AsObject;
|
|
131
|
+
static toObject(includeInstance: boolean, msg: ActivateRequest): ActivateRequest.AsObject;
|
|
132
|
+
static serializeBinaryToWriter(message: ActivateRequest, writer: jspb.BinaryWriter): void;
|
|
133
|
+
static deserializeBinary(bytes: Uint8Array): ActivateRequest;
|
|
134
|
+
static deserializeBinaryFromReader(message: ActivateRequest, reader: jspb.BinaryReader): ActivateRequest;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export namespace ActivateRequest {
|
|
138
|
+
export type AsObject = {
|
|
139
|
+
accesstoken: string,
|
|
140
|
+
source: string,
|
|
141
|
+
sourceid: number,
|
|
142
|
+
activationname: string,
|
|
143
|
+
paymentdetailid: number,
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export class Activation extends jspb.Message {
|
|
148
|
+
getName(): string;
|
|
149
|
+
setName(value: string): Activation;
|
|
150
|
+
|
|
151
|
+
getSource(): string;
|
|
152
|
+
setSource(value: string): Activation;
|
|
153
|
+
|
|
154
|
+
getSourceid(): number;
|
|
155
|
+
setSourceid(value: number): Activation;
|
|
156
|
+
|
|
157
|
+
serializeBinary(): Uint8Array;
|
|
158
|
+
toObject(includeInstance?: boolean): Activation.AsObject;
|
|
159
|
+
static toObject(includeInstance: boolean, msg: Activation): Activation.AsObject;
|
|
160
|
+
static serializeBinaryToWriter(message: Activation, writer: jspb.BinaryWriter): void;
|
|
161
|
+
static deserializeBinary(bytes: Uint8Array): Activation;
|
|
162
|
+
static deserializeBinaryFromReader(message: Activation, reader: jspb.BinaryReader): Activation;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export namespace Activation {
|
|
166
|
+
export type AsObject = {
|
|
167
|
+
name: string,
|
|
168
|
+
source: string,
|
|
169
|
+
sourceid: number,
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export class AddPaymentMethod extends jspb.Message {
|
|
174
|
+
getPaymenttype(): string;
|
|
175
|
+
setPaymenttype(value: string): AddPaymentMethod;
|
|
176
|
+
|
|
177
|
+
getCreditcard(): CreditCard | undefined;
|
|
178
|
+
setCreditcard(value?: CreditCard): AddPaymentMethod;
|
|
179
|
+
hasCreditcard(): boolean;
|
|
180
|
+
clearCreditcard(): AddPaymentMethod;
|
|
181
|
+
|
|
182
|
+
getBankaccount(): BankAccount | undefined;
|
|
183
|
+
setBankaccount(value?: BankAccount): AddPaymentMethod;
|
|
184
|
+
hasBankaccount(): boolean;
|
|
185
|
+
clearBankaccount(): AddPaymentMethod;
|
|
186
|
+
|
|
187
|
+
getAccesstoken(): string;
|
|
188
|
+
setAccesstoken(value: string): AddPaymentMethod;
|
|
189
|
+
|
|
190
|
+
getApplepay(): ApplePay | undefined;
|
|
191
|
+
setApplepay(value?: ApplePay): AddPaymentMethod;
|
|
192
|
+
hasApplepay(): boolean;
|
|
193
|
+
clearApplepay(): AddPaymentMethod;
|
|
194
|
+
|
|
195
|
+
getGooglepay(): GooglePay | undefined;
|
|
196
|
+
setGooglepay(value?: GooglePay): AddPaymentMethod;
|
|
197
|
+
hasGooglepay(): boolean;
|
|
198
|
+
clearGooglepay(): AddPaymentMethod;
|
|
199
|
+
|
|
200
|
+
serializeBinary(): Uint8Array;
|
|
201
|
+
toObject(includeInstance?: boolean): AddPaymentMethod.AsObject;
|
|
202
|
+
static toObject(includeInstance: boolean, msg: AddPaymentMethod): AddPaymentMethod.AsObject;
|
|
203
|
+
static serializeBinaryToWriter(message: AddPaymentMethod, writer: jspb.BinaryWriter): void;
|
|
204
|
+
static deserializeBinary(bytes: Uint8Array): AddPaymentMethod;
|
|
205
|
+
static deserializeBinaryFromReader(message: AddPaymentMethod, reader: jspb.BinaryReader): AddPaymentMethod;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export namespace AddPaymentMethod {
|
|
209
|
+
export type AsObject = {
|
|
210
|
+
paymenttype: string,
|
|
211
|
+
creditcard?: CreditCard.AsObject,
|
|
212
|
+
bankaccount?: BankAccount.AsObject,
|
|
213
|
+
accesstoken: string,
|
|
214
|
+
applepay?: ApplePay.AsObject,
|
|
215
|
+
googlepay?: GooglePay.AsObject,
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export class AddPaymentMethodRequest extends jspb.Message {
|
|
220
|
+
getData(): AddPaymentMethod | undefined;
|
|
221
|
+
setData(value?: AddPaymentMethod): AddPaymentMethodRequest;
|
|
222
|
+
hasData(): boolean;
|
|
223
|
+
clearData(): AddPaymentMethodRequest;
|
|
224
|
+
|
|
225
|
+
serializeBinary(): Uint8Array;
|
|
226
|
+
toObject(includeInstance?: boolean): AddPaymentMethodRequest.AsObject;
|
|
227
|
+
static toObject(includeInstance: boolean, msg: AddPaymentMethodRequest): AddPaymentMethodRequest.AsObject;
|
|
228
|
+
static serializeBinaryToWriter(message: AddPaymentMethodRequest, writer: jspb.BinaryWriter): void;
|
|
229
|
+
static deserializeBinary(bytes: Uint8Array): AddPaymentMethodRequest;
|
|
230
|
+
static deserializeBinaryFromReader(message: AddPaymentMethodRequest, reader: jspb.BinaryReader): AddPaymentMethodRequest;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export namespace AddPaymentMethodRequest {
|
|
234
|
+
export type AsObject = {
|
|
235
|
+
data?: AddPaymentMethod.AsObject,
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export class AddZenithTokenRequest extends jspb.Message {
|
|
240
|
+
getData(): ZenithTokenAddRequest | undefined;
|
|
241
|
+
setData(value?: ZenithTokenAddRequest): AddZenithTokenRequest;
|
|
242
|
+
hasData(): boolean;
|
|
243
|
+
clearData(): AddZenithTokenRequest;
|
|
244
|
+
|
|
245
|
+
serializeBinary(): Uint8Array;
|
|
246
|
+
toObject(includeInstance?: boolean): AddZenithTokenRequest.AsObject;
|
|
247
|
+
static toObject(includeInstance: boolean, msg: AddZenithTokenRequest): AddZenithTokenRequest.AsObject;
|
|
248
|
+
static serializeBinaryToWriter(message: AddZenithTokenRequest, writer: jspb.BinaryWriter): void;
|
|
249
|
+
static deserializeBinary(bytes: Uint8Array): AddZenithTokenRequest;
|
|
250
|
+
static deserializeBinaryFromReader(message: AddZenithTokenRequest, reader: jspb.BinaryReader): AddZenithTokenRequest;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export namespace AddZenithTokenRequest {
|
|
254
|
+
export type AsObject = {
|
|
255
|
+
data?: ZenithTokenAddRequest.AsObject,
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export class ApplePay extends jspb.Message {
|
|
260
|
+
getToken(): string;
|
|
261
|
+
setToken(value: string): ApplePay;
|
|
262
|
+
|
|
263
|
+
getDisplayname(): string;
|
|
264
|
+
setDisplayname(value: string): ApplePay;
|
|
265
|
+
|
|
266
|
+
getNetwork(): string;
|
|
267
|
+
setNetwork(value: string): ApplePay;
|
|
268
|
+
|
|
269
|
+
getTransactionidentifier(): string;
|
|
270
|
+
setTransactionidentifier(value: string): ApplePay;
|
|
271
|
+
|
|
272
|
+
getType(): string;
|
|
273
|
+
setType(value: string): ApplePay;
|
|
274
|
+
|
|
275
|
+
getMerchantid(): string;
|
|
276
|
+
setMerchantid(value: string): ApplePay;
|
|
277
|
+
|
|
278
|
+
getGateway(): string;
|
|
279
|
+
setGateway(value: string): ApplePay;
|
|
280
|
+
|
|
281
|
+
serializeBinary(): Uint8Array;
|
|
282
|
+
toObject(includeInstance?: boolean): ApplePay.AsObject;
|
|
283
|
+
static toObject(includeInstance: boolean, msg: ApplePay): ApplePay.AsObject;
|
|
284
|
+
static serializeBinaryToWriter(message: ApplePay, writer: jspb.BinaryWriter): void;
|
|
285
|
+
static deserializeBinary(bytes: Uint8Array): ApplePay;
|
|
286
|
+
static deserializeBinaryFromReader(message: ApplePay, reader: jspb.BinaryReader): ApplePay;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export namespace ApplePay {
|
|
290
|
+
export type AsObject = {
|
|
291
|
+
token: string,
|
|
292
|
+
displayname: string,
|
|
293
|
+
network: string,
|
|
294
|
+
transactionidentifier: string,
|
|
295
|
+
type: string,
|
|
296
|
+
merchantid: string,
|
|
297
|
+
gateway: string,
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export class ApplePayDetail extends jspb.Message {
|
|
302
|
+
getApplepay(): ApplePay | undefined;
|
|
303
|
+
setApplepay(value?: ApplePay): ApplePayDetail;
|
|
304
|
+
hasApplepay(): boolean;
|
|
305
|
+
clearApplepay(): ApplePayDetail;
|
|
306
|
+
|
|
307
|
+
getFingerprint(): string;
|
|
308
|
+
setFingerprint(value: string): ApplePayDetail;
|
|
309
|
+
|
|
310
|
+
getLast4(): string;
|
|
311
|
+
setLast4(value: string): ApplePayDetail;
|
|
312
|
+
|
|
313
|
+
getStripecardid(): string;
|
|
314
|
+
setStripecardid(value: string): ApplePayDetail;
|
|
315
|
+
|
|
316
|
+
getStripetokenid(): string;
|
|
317
|
+
setStripetokenid(value: string): ApplePayDetail;
|
|
318
|
+
|
|
319
|
+
getPaymentType(): string;
|
|
320
|
+
setPaymentType(value: string): ApplePayDetail;
|
|
321
|
+
|
|
322
|
+
getCardvariant(): string;
|
|
323
|
+
setCardvariant(value: string): ApplePayDetail;
|
|
324
|
+
|
|
325
|
+
getStripecustomerid(): string;
|
|
326
|
+
setStripecustomerid(value: string): ApplePayDetail;
|
|
327
|
+
|
|
328
|
+
getCreateddatetime(): string;
|
|
329
|
+
setCreateddatetime(value: string): ApplePayDetail;
|
|
330
|
+
|
|
331
|
+
getFatzebratokenid(): string;
|
|
332
|
+
setFatzebratokenid(value: string): ApplePayDetail;
|
|
333
|
+
|
|
334
|
+
getIscreditcard(): boolean;
|
|
335
|
+
setIscreditcard(value: boolean): ApplePayDetail;
|
|
336
|
+
|
|
337
|
+
getIsdebitcard(): boolean;
|
|
338
|
+
setIsdebitcard(value: boolean): ApplePayDetail;
|
|
339
|
+
|
|
340
|
+
getIseftpos(): boolean;
|
|
341
|
+
setIseftpos(value: boolean): ApplePayDetail;
|
|
342
|
+
|
|
343
|
+
getIsinternational(): boolean;
|
|
344
|
+
setIsinternational(value: boolean): ApplePayDetail;
|
|
345
|
+
|
|
346
|
+
getIsprepaid(): boolean;
|
|
347
|
+
setIsprepaid(value: boolean): ApplePayDetail;
|
|
348
|
+
|
|
349
|
+
getIscryptocomcard(): boolean;
|
|
350
|
+
setIscryptocomcard(value: boolean): ApplePayDetail;
|
|
351
|
+
|
|
352
|
+
getIscorporate(): boolean;
|
|
353
|
+
setIscorporate(value: boolean): ApplePayDetail;
|
|
354
|
+
|
|
355
|
+
getIssmallbusiness(): boolean;
|
|
356
|
+
setIssmallbusiness(value: boolean): ApplePayDetail;
|
|
357
|
+
|
|
358
|
+
serializeBinary(): Uint8Array;
|
|
359
|
+
toObject(includeInstance?: boolean): ApplePayDetail.AsObject;
|
|
360
|
+
static toObject(includeInstance: boolean, msg: ApplePayDetail): ApplePayDetail.AsObject;
|
|
361
|
+
static serializeBinaryToWriter(message: ApplePayDetail, writer: jspb.BinaryWriter): void;
|
|
362
|
+
static deserializeBinary(bytes: Uint8Array): ApplePayDetail;
|
|
363
|
+
static deserializeBinaryFromReader(message: ApplePayDetail, reader: jspb.BinaryReader): ApplePayDetail;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
export namespace ApplePayDetail {
|
|
367
|
+
export type AsObject = {
|
|
368
|
+
applepay?: ApplePay.AsObject,
|
|
369
|
+
fingerprint: string,
|
|
370
|
+
last4: string,
|
|
371
|
+
stripecardid: string,
|
|
372
|
+
stripetokenid: string,
|
|
373
|
+
paymentType: string,
|
|
374
|
+
cardvariant: string,
|
|
375
|
+
stripecustomerid: string,
|
|
376
|
+
createddatetime: string,
|
|
377
|
+
fatzebratokenid: string,
|
|
378
|
+
iscreditcard: boolean,
|
|
379
|
+
isdebitcard: boolean,
|
|
380
|
+
iseftpos: boolean,
|
|
381
|
+
isinternational: boolean,
|
|
382
|
+
isprepaid: boolean,
|
|
383
|
+
iscryptocomcard: boolean,
|
|
384
|
+
iscorporate: boolean,
|
|
385
|
+
issmallbusiness: boolean,
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
export class BankAccount extends jspb.Message {
|
|
390
|
+
getBsb(): string;
|
|
391
|
+
setBsb(value: string): BankAccount;
|
|
392
|
+
|
|
393
|
+
getAccountno(): string;
|
|
394
|
+
setAccountno(value: string): BankAccount;
|
|
395
|
+
|
|
396
|
+
getAccountname(): string;
|
|
397
|
+
setAccountname(value: string): BankAccount;
|
|
398
|
+
|
|
399
|
+
getNickname(): string;
|
|
400
|
+
setNickname(value: string): BankAccount;
|
|
401
|
+
|
|
402
|
+
getCreateddatetime(): string;
|
|
403
|
+
setCreateddatetime(value: string): BankAccount;
|
|
404
|
+
|
|
405
|
+
getIsverified(): boolean;
|
|
406
|
+
setIsverified(value: boolean): BankAccount;
|
|
407
|
+
|
|
408
|
+
getBankname(): string;
|
|
409
|
+
setBankname(value: string): BankAccount;
|
|
410
|
+
|
|
411
|
+
getColourscheme(): ColourScheme | undefined;
|
|
412
|
+
setColourscheme(value?: ColourScheme): BankAccount;
|
|
413
|
+
hasColourscheme(): boolean;
|
|
414
|
+
clearColourscheme(): BankAccount;
|
|
415
|
+
|
|
416
|
+
getIsverifyexpired(): boolean;
|
|
417
|
+
setIsverifyexpired(value: boolean): BankAccount;
|
|
418
|
+
|
|
419
|
+
getContactid(): string;
|
|
420
|
+
setContactid(value: string): BankAccount;
|
|
421
|
+
|
|
422
|
+
serializeBinary(): Uint8Array;
|
|
423
|
+
toObject(includeInstance?: boolean): BankAccount.AsObject;
|
|
424
|
+
static toObject(includeInstance: boolean, msg: BankAccount): BankAccount.AsObject;
|
|
425
|
+
static serializeBinaryToWriter(message: BankAccount, writer: jspb.BinaryWriter): void;
|
|
426
|
+
static deserializeBinary(bytes: Uint8Array): BankAccount;
|
|
427
|
+
static deserializeBinaryFromReader(message: BankAccount, reader: jspb.BinaryReader): BankAccount;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
export namespace BankAccount {
|
|
431
|
+
export type AsObject = {
|
|
432
|
+
bsb: string,
|
|
433
|
+
accountno: string,
|
|
434
|
+
accountname: string,
|
|
435
|
+
nickname: string,
|
|
436
|
+
createddatetime: string,
|
|
437
|
+
isverified: boolean,
|
|
438
|
+
bankname: string,
|
|
439
|
+
colourscheme?: ColourScheme.AsObject,
|
|
440
|
+
isverifyexpired: boolean,
|
|
441
|
+
contactid: string,
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
export class BankAccountVerifyRequest extends jspb.Message {
|
|
446
|
+
getPaymentmethodid(): number;
|
|
447
|
+
setPaymentmethodid(value: number): BankAccountVerifyRequest;
|
|
448
|
+
|
|
449
|
+
getVerifytext(): string;
|
|
450
|
+
setVerifytext(value: string): BankAccountVerifyRequest;
|
|
451
|
+
|
|
452
|
+
serializeBinary(): Uint8Array;
|
|
453
|
+
toObject(includeInstance?: boolean): BankAccountVerifyRequest.AsObject;
|
|
454
|
+
static toObject(includeInstance: boolean, msg: BankAccountVerifyRequest): BankAccountVerifyRequest.AsObject;
|
|
455
|
+
static serializeBinaryToWriter(message: BankAccountVerifyRequest, writer: jspb.BinaryWriter): void;
|
|
456
|
+
static deserializeBinary(bytes: Uint8Array): BankAccountVerifyRequest;
|
|
457
|
+
static deserializeBinaryFromReader(message: BankAccountVerifyRequest, reader: jspb.BinaryReader): BankAccountVerifyRequest;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
export namespace BankAccountVerifyRequest {
|
|
461
|
+
export type AsObject = {
|
|
462
|
+
paymentmethodid: number,
|
|
463
|
+
verifytext: string,
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
export class BankVerifyCodeRequest extends jspb.Message {
|
|
468
|
+
getPaymentmethodid(): number;
|
|
469
|
+
setPaymentmethodid(value: number): BankVerifyCodeRequest;
|
|
470
|
+
|
|
471
|
+
serializeBinary(): Uint8Array;
|
|
472
|
+
toObject(includeInstance?: boolean): BankVerifyCodeRequest.AsObject;
|
|
473
|
+
static toObject(includeInstance: boolean, msg: BankVerifyCodeRequest): BankVerifyCodeRequest.AsObject;
|
|
474
|
+
static serializeBinaryToWriter(message: BankVerifyCodeRequest, writer: jspb.BinaryWriter): void;
|
|
475
|
+
static deserializeBinary(bytes: Uint8Array): BankVerifyCodeRequest;
|
|
476
|
+
static deserializeBinaryFromReader(message: BankVerifyCodeRequest, reader: jspb.BinaryReader): BankVerifyCodeRequest;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
export namespace BankVerifyCodeRequest {
|
|
480
|
+
export type AsObject = {
|
|
481
|
+
paymentmethodid: number,
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
export class BankVerifyCodeResponse extends jspb.Message {
|
|
486
|
+
getBankverifycode(): string;
|
|
487
|
+
setBankverifycode(value: string): BankVerifyCodeResponse;
|
|
488
|
+
|
|
489
|
+
serializeBinary(): Uint8Array;
|
|
490
|
+
toObject(includeInstance?: boolean): BankVerifyCodeResponse.AsObject;
|
|
491
|
+
static toObject(includeInstance: boolean, msg: BankVerifyCodeResponse): BankVerifyCodeResponse.AsObject;
|
|
492
|
+
static serializeBinaryToWriter(message: BankVerifyCodeResponse, writer: jspb.BinaryWriter): void;
|
|
493
|
+
static deserializeBinary(bytes: Uint8Array): BankVerifyCodeResponse;
|
|
494
|
+
static deserializeBinaryFromReader(message: BankVerifyCodeResponse, reader: jspb.BinaryReader): BankVerifyCodeResponse;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
export namespace BankVerifyCodeResponse {
|
|
498
|
+
export type AsObject = {
|
|
499
|
+
bankverifycode: string,
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
export class BillConfigForPayment extends jspb.Message {
|
|
504
|
+
getBillid(): number;
|
|
505
|
+
setBillid(value: number): BillConfigForPayment;
|
|
506
|
+
|
|
507
|
+
getCanacceptpaymentmethod(): boolean;
|
|
508
|
+
setCanacceptpaymentmethod(value: boolean): BillConfigForPayment;
|
|
509
|
+
|
|
510
|
+
getBillconfigid(): number;
|
|
511
|
+
setBillconfigid(value: number): BillConfigForPayment;
|
|
512
|
+
|
|
513
|
+
getPaymentprocessor(): string;
|
|
514
|
+
setPaymentprocessor(value: string): BillConfigForPayment;
|
|
515
|
+
|
|
516
|
+
serializeBinary(): Uint8Array;
|
|
517
|
+
toObject(includeInstance?: boolean): BillConfigForPayment.AsObject;
|
|
518
|
+
static toObject(includeInstance: boolean, msg: BillConfigForPayment): BillConfigForPayment.AsObject;
|
|
519
|
+
static serializeBinaryToWriter(message: BillConfigForPayment, writer: jspb.BinaryWriter): void;
|
|
520
|
+
static deserializeBinary(bytes: Uint8Array): BillConfigForPayment;
|
|
521
|
+
static deserializeBinaryFromReader(message: BillConfigForPayment, reader: jspb.BinaryReader): BillConfigForPayment;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
export namespace BillConfigForPayment {
|
|
525
|
+
export type AsObject = {
|
|
526
|
+
billid: number,
|
|
527
|
+
canacceptpaymentmethod: boolean,
|
|
528
|
+
billconfigid: number,
|
|
529
|
+
paymentprocessor: string,
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
export class BillConfigsForPaymentRequest extends jspb.Message {
|
|
534
|
+
getBillidsList(): Array<number>;
|
|
535
|
+
setBillidsList(value: Array<number>): BillConfigsForPaymentRequest;
|
|
536
|
+
clearBillidsList(): BillConfigsForPaymentRequest;
|
|
537
|
+
addBillids(value: number, index?: number): BillConfigsForPaymentRequest;
|
|
538
|
+
|
|
539
|
+
getPaymentmethodid(): number;
|
|
540
|
+
setPaymentmethodid(value: number): BillConfigsForPaymentRequest;
|
|
541
|
+
|
|
542
|
+
getUserid(): number;
|
|
543
|
+
setUserid(value: number): BillConfigsForPaymentRequest;
|
|
544
|
+
|
|
545
|
+
getApplepaydetail(): ApplePayDetail | undefined;
|
|
546
|
+
setApplepaydetail(value?: ApplePayDetail): BillConfigsForPaymentRequest;
|
|
547
|
+
hasApplepaydetail(): boolean;
|
|
548
|
+
clearApplepaydetail(): BillConfigsForPaymentRequest;
|
|
549
|
+
|
|
550
|
+
serializeBinary(): Uint8Array;
|
|
551
|
+
toObject(includeInstance?: boolean): BillConfigsForPaymentRequest.AsObject;
|
|
552
|
+
static toObject(includeInstance: boolean, msg: BillConfigsForPaymentRequest): BillConfigsForPaymentRequest.AsObject;
|
|
553
|
+
static serializeBinaryToWriter(message: BillConfigsForPaymentRequest, writer: jspb.BinaryWriter): void;
|
|
554
|
+
static deserializeBinary(bytes: Uint8Array): BillConfigsForPaymentRequest;
|
|
555
|
+
static deserializeBinaryFromReader(message: BillConfigsForPaymentRequest, reader: jspb.BinaryReader): BillConfigsForPaymentRequest;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
export namespace BillConfigsForPaymentRequest {
|
|
559
|
+
export type AsObject = {
|
|
560
|
+
billidsList: Array<number>,
|
|
561
|
+
paymentmethodid: number,
|
|
562
|
+
userid: number,
|
|
563
|
+
applepaydetail?: ApplePayDetail.AsObject,
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
export class BillConfigsForPaymentResponse extends jspb.Message {
|
|
568
|
+
getResponsecode(): ResponseCode | undefined;
|
|
569
|
+
setResponsecode(value?: ResponseCode): BillConfigsForPaymentResponse;
|
|
570
|
+
hasResponsecode(): boolean;
|
|
571
|
+
clearResponsecode(): BillConfigsForPaymentResponse;
|
|
572
|
+
|
|
573
|
+
getBillconfigsforpaymentList(): Array<BillConfigForPayment>;
|
|
574
|
+
setBillconfigsforpaymentList(value: Array<BillConfigForPayment>): BillConfigsForPaymentResponse;
|
|
575
|
+
clearBillconfigsforpaymentList(): BillConfigsForPaymentResponse;
|
|
576
|
+
addBillconfigsforpayment(value?: BillConfigForPayment, index?: number): BillConfigForPayment;
|
|
577
|
+
|
|
578
|
+
serializeBinary(): Uint8Array;
|
|
579
|
+
toObject(includeInstance?: boolean): BillConfigsForPaymentResponse.AsObject;
|
|
580
|
+
static toObject(includeInstance: boolean, msg: BillConfigsForPaymentResponse): BillConfigsForPaymentResponse.AsObject;
|
|
581
|
+
static serializeBinaryToWriter(message: BillConfigsForPaymentResponse, writer: jspb.BinaryWriter): void;
|
|
582
|
+
static deserializeBinary(bytes: Uint8Array): BillConfigsForPaymentResponse;
|
|
583
|
+
static deserializeBinaryFromReader(message: BillConfigsForPaymentResponse, reader: jspb.BinaryReader): BillConfigsForPaymentResponse;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
export namespace BillConfigsForPaymentResponse {
|
|
587
|
+
export type AsObject = {
|
|
588
|
+
responsecode?: ResponseCode.AsObject,
|
|
589
|
+
billconfigsforpaymentList: Array<BillConfigForPayment.AsObject>,
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
export class CardHashRequest extends jspb.Message {
|
|
594
|
+
getPaymentmethodid(): number;
|
|
595
|
+
setPaymentmethodid(value: number): CardHashRequest;
|
|
596
|
+
|
|
597
|
+
getUserid(): number;
|
|
598
|
+
setUserid(value: number): CardHashRequest;
|
|
599
|
+
|
|
600
|
+
serializeBinary(): Uint8Array;
|
|
601
|
+
toObject(includeInstance?: boolean): CardHashRequest.AsObject;
|
|
602
|
+
static toObject(includeInstance: boolean, msg: CardHashRequest): CardHashRequest.AsObject;
|
|
603
|
+
static serializeBinaryToWriter(message: CardHashRequest, writer: jspb.BinaryWriter): void;
|
|
604
|
+
static deserializeBinary(bytes: Uint8Array): CardHashRequest;
|
|
605
|
+
static deserializeBinaryFromReader(message: CardHashRequest, reader: jspb.BinaryReader): CardHashRequest;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
export namespace CardHashRequest {
|
|
609
|
+
export type AsObject = {
|
|
610
|
+
paymentmethodid: number,
|
|
611
|
+
userid: number,
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
export class CardHashResponse extends jspb.Message {
|
|
616
|
+
getResponsecode(): ResponseCode | undefined;
|
|
617
|
+
setResponsecode(value?: ResponseCode): CardHashResponse;
|
|
618
|
+
hasResponsecode(): boolean;
|
|
619
|
+
clearResponsecode(): CardHashResponse;
|
|
620
|
+
|
|
621
|
+
getCardhash(): string;
|
|
622
|
+
setCardhash(value: string): CardHashResponse;
|
|
623
|
+
|
|
624
|
+
serializeBinary(): Uint8Array;
|
|
625
|
+
toObject(includeInstance?: boolean): CardHashResponse.AsObject;
|
|
626
|
+
static toObject(includeInstance: boolean, msg: CardHashResponse): CardHashResponse.AsObject;
|
|
627
|
+
static serializeBinaryToWriter(message: CardHashResponse, writer: jspb.BinaryWriter): void;
|
|
628
|
+
static deserializeBinary(bytes: Uint8Array): CardHashResponse;
|
|
629
|
+
static deserializeBinaryFromReader(message: CardHashResponse, reader: jspb.BinaryReader): CardHashResponse;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
export namespace CardHashResponse {
|
|
633
|
+
export type AsObject = {
|
|
634
|
+
responsecode?: ResponseCode.AsObject,
|
|
635
|
+
cardhash: string,
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
export class CardHashesForUserRequest extends jspb.Message {
|
|
640
|
+
getUserid(): number;
|
|
641
|
+
setUserid(value: number): CardHashesForUserRequest;
|
|
642
|
+
|
|
643
|
+
serializeBinary(): Uint8Array;
|
|
644
|
+
toObject(includeInstance?: boolean): CardHashesForUserRequest.AsObject;
|
|
645
|
+
static toObject(includeInstance: boolean, msg: CardHashesForUserRequest): CardHashesForUserRequest.AsObject;
|
|
646
|
+
static serializeBinaryToWriter(message: CardHashesForUserRequest, writer: jspb.BinaryWriter): void;
|
|
647
|
+
static deserializeBinary(bytes: Uint8Array): CardHashesForUserRequest;
|
|
648
|
+
static deserializeBinaryFromReader(message: CardHashesForUserRequest, reader: jspb.BinaryReader): CardHashesForUserRequest;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
export namespace CardHashesForUserRequest {
|
|
652
|
+
export type AsObject = {
|
|
653
|
+
userid: number,
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
export class CardHashesForUserResponse extends jspb.Message {
|
|
658
|
+
getResponsecode(): ResponseCode | undefined;
|
|
659
|
+
setResponsecode(value?: ResponseCode): CardHashesForUserResponse;
|
|
660
|
+
hasResponsecode(): boolean;
|
|
661
|
+
clearResponsecode(): CardHashesForUserResponse;
|
|
662
|
+
|
|
663
|
+
getCardhashesList(): Array<string>;
|
|
664
|
+
setCardhashesList(value: Array<string>): CardHashesForUserResponse;
|
|
665
|
+
clearCardhashesList(): CardHashesForUserResponse;
|
|
666
|
+
addCardhashes(value: string, index?: number): CardHashesForUserResponse;
|
|
667
|
+
|
|
668
|
+
serializeBinary(): Uint8Array;
|
|
669
|
+
toObject(includeInstance?: boolean): CardHashesForUserResponse.AsObject;
|
|
670
|
+
static toObject(includeInstance: boolean, msg: CardHashesForUserResponse): CardHashesForUserResponse.AsObject;
|
|
671
|
+
static serializeBinaryToWriter(message: CardHashesForUserResponse, writer: jspb.BinaryWriter): void;
|
|
672
|
+
static deserializeBinary(bytes: Uint8Array): CardHashesForUserResponse;
|
|
673
|
+
static deserializeBinaryFromReader(message: CardHashesForUserResponse, reader: jspb.BinaryReader): CardHashesForUserResponse;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
export namespace CardHashesForUserResponse {
|
|
677
|
+
export type AsObject = {
|
|
678
|
+
responsecode?: ResponseCode.AsObject,
|
|
679
|
+
cardhashesList: Array<string>,
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
export class ColourScheme extends jspb.Message {
|
|
684
|
+
getColourschemeid(): number;
|
|
685
|
+
setColourschemeid(value: number): ColourScheme;
|
|
686
|
+
|
|
687
|
+
getName(): string;
|
|
688
|
+
setName(value: string): ColourScheme;
|
|
689
|
+
|
|
690
|
+
getCardcolour(): string;
|
|
691
|
+
setCardcolour(value: string): ColourScheme;
|
|
692
|
+
|
|
693
|
+
getTextcolour(): string;
|
|
694
|
+
setTextcolour(value: string): ColourScheme;
|
|
695
|
+
|
|
696
|
+
getIsdefaultcolour(): boolean;
|
|
697
|
+
setIsdefaultcolour(value: boolean): ColourScheme;
|
|
698
|
+
|
|
699
|
+
getIsdark(): boolean;
|
|
700
|
+
setIsdark(value: boolean): ColourScheme;
|
|
701
|
+
|
|
702
|
+
getBankaccountimageurl(): string;
|
|
703
|
+
setBankaccountimageurl(value: string): ColourScheme;
|
|
704
|
+
|
|
705
|
+
getCreditcardimageurl(): string;
|
|
706
|
+
setCreditcardimageurl(value: string): ColourScheme;
|
|
707
|
+
|
|
708
|
+
getGroupname(): string;
|
|
709
|
+
setGroupname(value: string): ColourScheme;
|
|
710
|
+
|
|
711
|
+
serializeBinary(): Uint8Array;
|
|
712
|
+
toObject(includeInstance?: boolean): ColourScheme.AsObject;
|
|
713
|
+
static toObject(includeInstance: boolean, msg: ColourScheme): ColourScheme.AsObject;
|
|
714
|
+
static serializeBinaryToWriter(message: ColourScheme, writer: jspb.BinaryWriter): void;
|
|
715
|
+
static deserializeBinary(bytes: Uint8Array): ColourScheme;
|
|
716
|
+
static deserializeBinaryFromReader(message: ColourScheme, reader: jspb.BinaryReader): ColourScheme;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
export namespace ColourScheme {
|
|
720
|
+
export type AsObject = {
|
|
721
|
+
colourschemeid: number,
|
|
722
|
+
name: string,
|
|
723
|
+
cardcolour: string,
|
|
724
|
+
textcolour: string,
|
|
725
|
+
isdefaultcolour: boolean,
|
|
726
|
+
isdark: boolean,
|
|
727
|
+
bankaccountimageurl: string,
|
|
728
|
+
creditcardimageurl: string,
|
|
729
|
+
groupname: string,
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
export class CreatePaymentMethodGroupRequest extends jspb.Message {
|
|
734
|
+
getData(): PaymentMethodGroupCreateRequest | undefined;
|
|
735
|
+
setData(value?: PaymentMethodGroupCreateRequest): CreatePaymentMethodGroupRequest;
|
|
736
|
+
hasData(): boolean;
|
|
737
|
+
clearData(): CreatePaymentMethodGroupRequest;
|
|
738
|
+
|
|
739
|
+
serializeBinary(): Uint8Array;
|
|
740
|
+
toObject(includeInstance?: boolean): CreatePaymentMethodGroupRequest.AsObject;
|
|
741
|
+
static toObject(includeInstance: boolean, msg: CreatePaymentMethodGroupRequest): CreatePaymentMethodGroupRequest.AsObject;
|
|
742
|
+
static serializeBinaryToWriter(message: CreatePaymentMethodGroupRequest, writer: jspb.BinaryWriter): void;
|
|
743
|
+
static deserializeBinary(bytes: Uint8Array): CreatePaymentMethodGroupRequest;
|
|
744
|
+
static deserializeBinaryFromReader(message: CreatePaymentMethodGroupRequest, reader: jspb.BinaryReader): CreatePaymentMethodGroupRequest;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
export namespace CreatePaymentMethodGroupRequest {
|
|
748
|
+
export type AsObject = {
|
|
749
|
+
data?: PaymentMethodGroupCreateRequest.AsObject,
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
export class CreditCard extends jspb.Message {
|
|
754
|
+
getNameoncard(): string;
|
|
755
|
+
setNameoncard(value: string): CreditCard;
|
|
756
|
+
|
|
757
|
+
getCardnumber(): string;
|
|
758
|
+
setCardnumber(value: string): CreditCard;
|
|
759
|
+
|
|
760
|
+
getCvv(): string;
|
|
761
|
+
setCvv(value: string): CreditCard;
|
|
762
|
+
|
|
763
|
+
getCardtype(): string;
|
|
764
|
+
setCardtype(value: string): CreditCard;
|
|
765
|
+
|
|
766
|
+
getMonthexpiry(): number;
|
|
767
|
+
setMonthexpiry(value: number): CreditCard;
|
|
768
|
+
|
|
769
|
+
getYearexpiry(): number;
|
|
770
|
+
setYearexpiry(value: number): CreditCard;
|
|
771
|
+
|
|
772
|
+
getNickname(): string;
|
|
773
|
+
setNickname(value: string): CreditCard;
|
|
774
|
+
|
|
775
|
+
getTokenisedcreditcardid(): number;
|
|
776
|
+
setTokenisedcreditcardid(value: number): CreditCard;
|
|
777
|
+
|
|
778
|
+
getBankname(): string;
|
|
779
|
+
setBankname(value: string): CreditCard;
|
|
780
|
+
|
|
781
|
+
getBanklogoname(): string;
|
|
782
|
+
setBanklogoname(value: string): CreditCard;
|
|
783
|
+
|
|
784
|
+
getColourscheme(): ColourScheme | undefined;
|
|
785
|
+
setColourscheme(value?: ColourScheme): CreditCard;
|
|
786
|
+
hasColourscheme(): boolean;
|
|
787
|
+
clearColourscheme(): CreditCard;
|
|
788
|
+
|
|
789
|
+
getIscreditcard(): boolean;
|
|
790
|
+
setIscreditcard(value: boolean): CreditCard;
|
|
791
|
+
|
|
792
|
+
getIsdebitcard(): boolean;
|
|
793
|
+
setIsdebitcard(value: boolean): CreditCard;
|
|
794
|
+
|
|
795
|
+
getIsverified(): boolean;
|
|
796
|
+
setIsverified(value: boolean): CreditCard;
|
|
797
|
+
|
|
798
|
+
getAttemptedverification(): boolean;
|
|
799
|
+
setAttemptedverification(value: boolean): CreditCard;
|
|
800
|
+
|
|
801
|
+
getIseftpos(): boolean;
|
|
802
|
+
setIseftpos(value: boolean): CreditCard;
|
|
803
|
+
|
|
804
|
+
getIsinternational(): boolean;
|
|
805
|
+
setIsinternational(value: boolean): CreditCard;
|
|
806
|
+
|
|
807
|
+
getIsprepaid(): boolean;
|
|
808
|
+
setIsprepaid(value: boolean): CreditCard;
|
|
809
|
+
|
|
810
|
+
getRequires3ds(): boolean;
|
|
811
|
+
setRequires3ds(value: boolean): CreditCard;
|
|
812
|
+
|
|
813
|
+
getIscorporate(): boolean;
|
|
814
|
+
setIscorporate(value: boolean): CreditCard;
|
|
815
|
+
|
|
816
|
+
getIssmallbusiness(): boolean;
|
|
817
|
+
setIssmallbusiness(value: boolean): CreditCard;
|
|
818
|
+
|
|
819
|
+
getIscryptocomcard(): boolean;
|
|
820
|
+
setIscryptocomcard(value: boolean): CreditCard;
|
|
821
|
+
|
|
822
|
+
serializeBinary(): Uint8Array;
|
|
823
|
+
toObject(includeInstance?: boolean): CreditCard.AsObject;
|
|
824
|
+
static toObject(includeInstance: boolean, msg: CreditCard): CreditCard.AsObject;
|
|
825
|
+
static serializeBinaryToWriter(message: CreditCard, writer: jspb.BinaryWriter): void;
|
|
826
|
+
static deserializeBinary(bytes: Uint8Array): CreditCard;
|
|
827
|
+
static deserializeBinaryFromReader(message: CreditCard, reader: jspb.BinaryReader): CreditCard;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
export namespace CreditCard {
|
|
831
|
+
export type AsObject = {
|
|
832
|
+
nameoncard: string,
|
|
833
|
+
cardnumber: string,
|
|
834
|
+
cvv: string,
|
|
835
|
+
cardtype: string,
|
|
836
|
+
monthexpiry: number,
|
|
837
|
+
yearexpiry: number,
|
|
838
|
+
nickname: string,
|
|
839
|
+
tokenisedcreditcardid: number,
|
|
840
|
+
bankname: string,
|
|
841
|
+
banklogoname: string,
|
|
842
|
+
colourscheme?: ColourScheme.AsObject,
|
|
843
|
+
iscreditcard: boolean,
|
|
844
|
+
isdebitcard: boolean,
|
|
845
|
+
isverified: boolean,
|
|
846
|
+
attemptedverification: boolean,
|
|
847
|
+
iseftpos: boolean,
|
|
848
|
+
isinternational: boolean,
|
|
849
|
+
isprepaid: boolean,
|
|
850
|
+
requires3ds: boolean,
|
|
851
|
+
iscorporate: boolean,
|
|
852
|
+
issmallbusiness: boolean,
|
|
853
|
+
iscryptocomcard: boolean,
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
export class CreditCardForPaymentRequest extends jspb.Message {
|
|
858
|
+
getAccesstoken(): string;
|
|
859
|
+
setAccesstoken(value: string): CreditCardForPaymentRequest;
|
|
860
|
+
|
|
861
|
+
getUserid(): number;
|
|
862
|
+
setUserid(value: number): CreditCardForPaymentRequest;
|
|
863
|
+
|
|
864
|
+
getIspaymentaccesskey(): boolean;
|
|
865
|
+
setIspaymentaccesskey(value: boolean): CreditCardForPaymentRequest;
|
|
866
|
+
|
|
867
|
+
getPaymentmethodid(): number;
|
|
868
|
+
setPaymentmethodid(value: number): CreditCardForPaymentRequest;
|
|
869
|
+
|
|
870
|
+
serializeBinary(): Uint8Array;
|
|
871
|
+
toObject(includeInstance?: boolean): CreditCardForPaymentRequest.AsObject;
|
|
872
|
+
static toObject(includeInstance: boolean, msg: CreditCardForPaymentRequest): CreditCardForPaymentRequest.AsObject;
|
|
873
|
+
static serializeBinaryToWriter(message: CreditCardForPaymentRequest, writer: jspb.BinaryWriter): void;
|
|
874
|
+
static deserializeBinary(bytes: Uint8Array): CreditCardForPaymentRequest;
|
|
875
|
+
static deserializeBinaryFromReader(message: CreditCardForPaymentRequest, reader: jspb.BinaryReader): CreditCardForPaymentRequest;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
export namespace CreditCardForPaymentRequest {
|
|
879
|
+
export type AsObject = {
|
|
880
|
+
accesstoken: string,
|
|
881
|
+
userid: number,
|
|
882
|
+
ispaymentaccesskey: boolean,
|
|
883
|
+
paymentmethodid: number,
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
export class CreditCardVerifyRequest extends jspb.Message {
|
|
888
|
+
getPaymentmethodid(): number;
|
|
889
|
+
setPaymentmethodid(value: number): CreditCardVerifyRequest;
|
|
890
|
+
|
|
891
|
+
getCvv(): string;
|
|
892
|
+
setCvv(value: string): CreditCardVerifyRequest;
|
|
893
|
+
|
|
894
|
+
getUserid(): number;
|
|
895
|
+
setUserid(value: number): CreditCardVerifyRequest;
|
|
896
|
+
|
|
897
|
+
getAccesstoken(): string;
|
|
898
|
+
setAccesstoken(value: string): CreditCardVerifyRequest;
|
|
899
|
+
|
|
900
|
+
serializeBinary(): Uint8Array;
|
|
901
|
+
toObject(includeInstance?: boolean): CreditCardVerifyRequest.AsObject;
|
|
902
|
+
static toObject(includeInstance: boolean, msg: CreditCardVerifyRequest): CreditCardVerifyRequest.AsObject;
|
|
903
|
+
static serializeBinaryToWriter(message: CreditCardVerifyRequest, writer: jspb.BinaryWriter): void;
|
|
904
|
+
static deserializeBinary(bytes: Uint8Array): CreditCardVerifyRequest;
|
|
905
|
+
static deserializeBinaryFromReader(message: CreditCardVerifyRequest, reader: jspb.BinaryReader): CreditCardVerifyRequest;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
export namespace CreditCardVerifyRequest {
|
|
909
|
+
export type AsObject = {
|
|
910
|
+
paymentmethodid: number,
|
|
911
|
+
cvv: string,
|
|
912
|
+
userid: number,
|
|
913
|
+
accesstoken: string,
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
export class GetAcceptedPaymentMethodsByGroupIdRequest extends jspb.Message {
|
|
918
|
+
getGroupid(): number;
|
|
919
|
+
setGroupid(value: number): GetAcceptedPaymentMethodsByGroupIdRequest;
|
|
920
|
+
|
|
921
|
+
serializeBinary(): Uint8Array;
|
|
922
|
+
toObject(includeInstance?: boolean): GetAcceptedPaymentMethodsByGroupIdRequest.AsObject;
|
|
923
|
+
static toObject(includeInstance: boolean, msg: GetAcceptedPaymentMethodsByGroupIdRequest): GetAcceptedPaymentMethodsByGroupIdRequest.AsObject;
|
|
924
|
+
static serializeBinaryToWriter(message: GetAcceptedPaymentMethodsByGroupIdRequest, writer: jspb.BinaryWriter): void;
|
|
925
|
+
static deserializeBinary(bytes: Uint8Array): GetAcceptedPaymentMethodsByGroupIdRequest;
|
|
926
|
+
static deserializeBinaryFromReader(message: GetAcceptedPaymentMethodsByGroupIdRequest, reader: jspb.BinaryReader): GetAcceptedPaymentMethodsByGroupIdRequest;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
export namespace GetAcceptedPaymentMethodsByGroupIdRequest {
|
|
930
|
+
export type AsObject = {
|
|
931
|
+
groupid: number,
|
|
932
|
+
}
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
export class GetActivatedPaymentMethodRequest extends jspb.Message {
|
|
936
|
+
getData(): GetPaymentMethodRequest | undefined;
|
|
937
|
+
setData(value?: GetPaymentMethodRequest): GetActivatedPaymentMethodRequest;
|
|
938
|
+
hasData(): boolean;
|
|
939
|
+
clearData(): GetActivatedPaymentMethodRequest;
|
|
940
|
+
|
|
941
|
+
serializeBinary(): Uint8Array;
|
|
942
|
+
toObject(includeInstance?: boolean): GetActivatedPaymentMethodRequest.AsObject;
|
|
943
|
+
static toObject(includeInstance: boolean, msg: GetActivatedPaymentMethodRequest): GetActivatedPaymentMethodRequest.AsObject;
|
|
944
|
+
static serializeBinaryToWriter(message: GetActivatedPaymentMethodRequest, writer: jspb.BinaryWriter): void;
|
|
945
|
+
static deserializeBinary(bytes: Uint8Array): GetActivatedPaymentMethodRequest;
|
|
946
|
+
static deserializeBinaryFromReader(message: GetActivatedPaymentMethodRequest, reader: jspb.BinaryReader): GetActivatedPaymentMethodRequest;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
export namespace GetActivatedPaymentMethodRequest {
|
|
950
|
+
export type AsObject = {
|
|
951
|
+
data?: GetPaymentMethodRequest.AsObject,
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
export class GetBankVerifyCodeRequest extends jspb.Message {
|
|
956
|
+
getData(): BankVerifyCodeRequest | undefined;
|
|
957
|
+
setData(value?: BankVerifyCodeRequest): GetBankVerifyCodeRequest;
|
|
958
|
+
hasData(): boolean;
|
|
959
|
+
clearData(): GetBankVerifyCodeRequest;
|
|
960
|
+
|
|
961
|
+
serializeBinary(): Uint8Array;
|
|
962
|
+
toObject(includeInstance?: boolean): GetBankVerifyCodeRequest.AsObject;
|
|
963
|
+
static toObject(includeInstance: boolean, msg: GetBankVerifyCodeRequest): GetBankVerifyCodeRequest.AsObject;
|
|
964
|
+
static serializeBinaryToWriter(message: GetBankVerifyCodeRequest, writer: jspb.BinaryWriter): void;
|
|
965
|
+
static deserializeBinary(bytes: Uint8Array): GetBankVerifyCodeRequest;
|
|
966
|
+
static deserializeBinaryFromReader(message: GetBankVerifyCodeRequest, reader: jspb.BinaryReader): GetBankVerifyCodeRequest;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
export namespace GetBankVerifyCodeRequest {
|
|
970
|
+
export type AsObject = {
|
|
971
|
+
data?: BankVerifyCodeRequest.AsObject,
|
|
972
|
+
}
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
export class GetCardHashRequest extends jspb.Message {
|
|
976
|
+
getData(): CardHashRequest | undefined;
|
|
977
|
+
setData(value?: CardHashRequest): GetCardHashRequest;
|
|
978
|
+
hasData(): boolean;
|
|
979
|
+
clearData(): GetCardHashRequest;
|
|
980
|
+
|
|
981
|
+
serializeBinary(): Uint8Array;
|
|
982
|
+
toObject(includeInstance?: boolean): GetCardHashRequest.AsObject;
|
|
983
|
+
static toObject(includeInstance: boolean, msg: GetCardHashRequest): GetCardHashRequest.AsObject;
|
|
984
|
+
static serializeBinaryToWriter(message: GetCardHashRequest, writer: jspb.BinaryWriter): void;
|
|
985
|
+
static deserializeBinary(bytes: Uint8Array): GetCardHashRequest;
|
|
986
|
+
static deserializeBinaryFromReader(message: GetCardHashRequest, reader: jspb.BinaryReader): GetCardHashRequest;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
export namespace GetCardHashRequest {
|
|
990
|
+
export type AsObject = {
|
|
991
|
+
data?: CardHashRequest.AsObject,
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
export class GetCardHashesForUserRequest extends jspb.Message {
|
|
996
|
+
getData(): CardHashesForUserRequest | undefined;
|
|
997
|
+
setData(value?: CardHashesForUserRequest): GetCardHashesForUserRequest;
|
|
998
|
+
hasData(): boolean;
|
|
999
|
+
clearData(): GetCardHashesForUserRequest;
|
|
1000
|
+
|
|
1001
|
+
serializeBinary(): Uint8Array;
|
|
1002
|
+
toObject(includeInstance?: boolean): GetCardHashesForUserRequest.AsObject;
|
|
1003
|
+
static toObject(includeInstance: boolean, msg: GetCardHashesForUserRequest): GetCardHashesForUserRequest.AsObject;
|
|
1004
|
+
static serializeBinaryToWriter(message: GetCardHashesForUserRequest, writer: jspb.BinaryWriter): void;
|
|
1005
|
+
static deserializeBinary(bytes: Uint8Array): GetCardHashesForUserRequest;
|
|
1006
|
+
static deserializeBinaryFromReader(message: GetCardHashesForUserRequest, reader: jspb.BinaryReader): GetCardHashesForUserRequest;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
export namespace GetCardHashesForUserRequest {
|
|
1010
|
+
export type AsObject = {
|
|
1011
|
+
data?: CardHashesForUserRequest.AsObject,
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
export class GetCreditCardForPaymentRequest extends jspb.Message {
|
|
1016
|
+
getData(): CreditCardForPaymentRequest | undefined;
|
|
1017
|
+
setData(value?: CreditCardForPaymentRequest): GetCreditCardForPaymentRequest;
|
|
1018
|
+
hasData(): boolean;
|
|
1019
|
+
clearData(): GetCreditCardForPaymentRequest;
|
|
1020
|
+
|
|
1021
|
+
serializeBinary(): Uint8Array;
|
|
1022
|
+
toObject(includeInstance?: boolean): GetCreditCardForPaymentRequest.AsObject;
|
|
1023
|
+
static toObject(includeInstance: boolean, msg: GetCreditCardForPaymentRequest): GetCreditCardForPaymentRequest.AsObject;
|
|
1024
|
+
static serializeBinaryToWriter(message: GetCreditCardForPaymentRequest, writer: jspb.BinaryWriter): void;
|
|
1025
|
+
static deserializeBinary(bytes: Uint8Array): GetCreditCardForPaymentRequest;
|
|
1026
|
+
static deserializeBinaryFromReader(message: GetCreditCardForPaymentRequest, reader: jspb.BinaryReader): GetCreditCardForPaymentRequest;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
export namespace GetCreditCardForPaymentRequest {
|
|
1030
|
+
export type AsObject = {
|
|
1031
|
+
data?: CreditCardForPaymentRequest.AsObject,
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
export class GetDigitalPaymentMethodsInfoRequest extends jspb.Message {
|
|
1036
|
+
getData(): PaymentMethodsDigitalRequest | undefined;
|
|
1037
|
+
setData(value?: PaymentMethodsDigitalRequest): GetDigitalPaymentMethodsInfoRequest;
|
|
1038
|
+
hasData(): boolean;
|
|
1039
|
+
clearData(): GetDigitalPaymentMethodsInfoRequest;
|
|
1040
|
+
|
|
1041
|
+
serializeBinary(): Uint8Array;
|
|
1042
|
+
toObject(includeInstance?: boolean): GetDigitalPaymentMethodsInfoRequest.AsObject;
|
|
1043
|
+
static toObject(includeInstance: boolean, msg: GetDigitalPaymentMethodsInfoRequest): GetDigitalPaymentMethodsInfoRequest.AsObject;
|
|
1044
|
+
static serializeBinaryToWriter(message: GetDigitalPaymentMethodsInfoRequest, writer: jspb.BinaryWriter): void;
|
|
1045
|
+
static deserializeBinary(bytes: Uint8Array): GetDigitalPaymentMethodsInfoRequest;
|
|
1046
|
+
static deserializeBinaryFromReader(message: GetDigitalPaymentMethodsInfoRequest, reader: jspb.BinaryReader): GetDigitalPaymentMethodsInfoRequest;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
export namespace GetDigitalPaymentMethodsInfoRequest {
|
|
1050
|
+
export type AsObject = {
|
|
1051
|
+
data?: PaymentMethodsDigitalRequest.AsObject,
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
export class GetPaymentMethodForPaymentRequest extends jspb.Message {
|
|
1056
|
+
getData(): PaymentMethodForPaymentRequest | undefined;
|
|
1057
|
+
setData(value?: PaymentMethodForPaymentRequest): GetPaymentMethodForPaymentRequest;
|
|
1058
|
+
hasData(): boolean;
|
|
1059
|
+
clearData(): GetPaymentMethodForPaymentRequest;
|
|
1060
|
+
|
|
1061
|
+
serializeBinary(): Uint8Array;
|
|
1062
|
+
toObject(includeInstance?: boolean): GetPaymentMethodForPaymentRequest.AsObject;
|
|
1063
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodForPaymentRequest): GetPaymentMethodForPaymentRequest.AsObject;
|
|
1064
|
+
static serializeBinaryToWriter(message: GetPaymentMethodForPaymentRequest, writer: jspb.BinaryWriter): void;
|
|
1065
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodForPaymentRequest;
|
|
1066
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodForPaymentRequest, reader: jspb.BinaryReader): GetPaymentMethodForPaymentRequest;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
export namespace GetPaymentMethodForPaymentRequest {
|
|
1070
|
+
export type AsObject = {
|
|
1071
|
+
data?: PaymentMethodForPaymentRequest.AsObject,
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
export class GetPaymentMethodGroupRequest extends jspb.Message {
|
|
1076
|
+
getGroupid(): number;
|
|
1077
|
+
setGroupid(value: number): GetPaymentMethodGroupRequest;
|
|
1078
|
+
|
|
1079
|
+
serializeBinary(): Uint8Array;
|
|
1080
|
+
toObject(includeInstance?: boolean): GetPaymentMethodGroupRequest.AsObject;
|
|
1081
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodGroupRequest): GetPaymentMethodGroupRequest.AsObject;
|
|
1082
|
+
static serializeBinaryToWriter(message: GetPaymentMethodGroupRequest, writer: jspb.BinaryWriter): void;
|
|
1083
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodGroupRequest;
|
|
1084
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodGroupRequest, reader: jspb.BinaryReader): GetPaymentMethodGroupRequest;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
export namespace GetPaymentMethodGroupRequest {
|
|
1088
|
+
export type AsObject = {
|
|
1089
|
+
groupid: number,
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
export class GetPaymentMethodRequest extends jspb.Message {
|
|
1094
|
+
getAccesstoken(): string;
|
|
1095
|
+
setAccesstoken(value: string): GetPaymentMethodRequest;
|
|
1096
|
+
|
|
1097
|
+
getSource(): string;
|
|
1098
|
+
setSource(value: string): GetPaymentMethodRequest;
|
|
1099
|
+
|
|
1100
|
+
getSourceid(): number;
|
|
1101
|
+
setSourceid(value: number): GetPaymentMethodRequest;
|
|
1102
|
+
|
|
1103
|
+
getActivation(): string;
|
|
1104
|
+
setActivation(value: string): GetPaymentMethodRequest;
|
|
1105
|
+
|
|
1106
|
+
serializeBinary(): Uint8Array;
|
|
1107
|
+
toObject(includeInstance?: boolean): GetPaymentMethodRequest.AsObject;
|
|
1108
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodRequest): GetPaymentMethodRequest.AsObject;
|
|
1109
|
+
static serializeBinaryToWriter(message: GetPaymentMethodRequest, writer: jspb.BinaryWriter): void;
|
|
1110
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodRequest;
|
|
1111
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodRequest, reader: jspb.BinaryReader): GetPaymentMethodRequest;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
export namespace GetPaymentMethodRequest {
|
|
1115
|
+
export type AsObject = {
|
|
1116
|
+
accesstoken: string,
|
|
1117
|
+
source: string,
|
|
1118
|
+
sourceid: number,
|
|
1119
|
+
activation: string,
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
export class GetPaymentMethodResponse extends jspb.Message {
|
|
1124
|
+
getPaymentmethod(): PaymentMethod | undefined;
|
|
1125
|
+
setPaymentmethod(value?: PaymentMethod): GetPaymentMethodResponse;
|
|
1126
|
+
hasPaymentmethod(): boolean;
|
|
1127
|
+
clearPaymentmethod(): GetPaymentMethodResponse;
|
|
1128
|
+
|
|
1129
|
+
getResponsecode(): ResponseCode | undefined;
|
|
1130
|
+
setResponsecode(value?: ResponseCode): GetPaymentMethodResponse;
|
|
1131
|
+
hasResponsecode(): boolean;
|
|
1132
|
+
clearResponsecode(): GetPaymentMethodResponse;
|
|
1133
|
+
|
|
1134
|
+
serializeBinary(): Uint8Array;
|
|
1135
|
+
toObject(includeInstance?: boolean): GetPaymentMethodResponse.AsObject;
|
|
1136
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodResponse): GetPaymentMethodResponse.AsObject;
|
|
1137
|
+
static serializeBinaryToWriter(message: GetPaymentMethodResponse, writer: jspb.BinaryWriter): void;
|
|
1138
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodResponse;
|
|
1139
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodResponse, reader: jspb.BinaryReader): GetPaymentMethodResponse;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
export namespace GetPaymentMethodResponse {
|
|
1143
|
+
export type AsObject = {
|
|
1144
|
+
paymentmethod?: PaymentMethod.AsObject,
|
|
1145
|
+
responsecode?: ResponseCode.AsObject,
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
export class GetPaymentMethodsByPaymentMethodIdInternalRequest extends jspb.Message {
|
|
1150
|
+
getData(): PaymentMethodsByPaymentMethodIdRequest | undefined;
|
|
1151
|
+
setData(value?: PaymentMethodsByPaymentMethodIdRequest): GetPaymentMethodsByPaymentMethodIdInternalRequest;
|
|
1152
|
+
hasData(): boolean;
|
|
1153
|
+
clearData(): GetPaymentMethodsByPaymentMethodIdInternalRequest;
|
|
1154
|
+
|
|
1155
|
+
serializeBinary(): Uint8Array;
|
|
1156
|
+
toObject(includeInstance?: boolean): GetPaymentMethodsByPaymentMethodIdInternalRequest.AsObject;
|
|
1157
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodsByPaymentMethodIdInternalRequest): GetPaymentMethodsByPaymentMethodIdInternalRequest.AsObject;
|
|
1158
|
+
static serializeBinaryToWriter(message: GetPaymentMethodsByPaymentMethodIdInternalRequest, writer: jspb.BinaryWriter): void;
|
|
1159
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodsByPaymentMethodIdInternalRequest;
|
|
1160
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodsByPaymentMethodIdInternalRequest, reader: jspb.BinaryReader): GetPaymentMethodsByPaymentMethodIdInternalRequest;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
export namespace GetPaymentMethodsByPaymentMethodIdInternalRequest {
|
|
1164
|
+
export type AsObject = {
|
|
1165
|
+
data?: PaymentMethodsByPaymentMethodIdRequest.AsObject,
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
export class GetPaymentMethodsForAuditInternalRequest extends jspb.Message {
|
|
1170
|
+
getData(): PaymentMethodsForAuditRequest | undefined;
|
|
1171
|
+
setData(value?: PaymentMethodsForAuditRequest): GetPaymentMethodsForAuditInternalRequest;
|
|
1172
|
+
hasData(): boolean;
|
|
1173
|
+
clearData(): GetPaymentMethodsForAuditInternalRequest;
|
|
1174
|
+
|
|
1175
|
+
serializeBinary(): Uint8Array;
|
|
1176
|
+
toObject(includeInstance?: boolean): GetPaymentMethodsForAuditInternalRequest.AsObject;
|
|
1177
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodsForAuditInternalRequest): GetPaymentMethodsForAuditInternalRequest.AsObject;
|
|
1178
|
+
static serializeBinaryToWriter(message: GetPaymentMethodsForAuditInternalRequest, writer: jspb.BinaryWriter): void;
|
|
1179
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodsForAuditInternalRequest;
|
|
1180
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodsForAuditInternalRequest, reader: jspb.BinaryReader): GetPaymentMethodsForAuditInternalRequest;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
export namespace GetPaymentMethodsForAuditInternalRequest {
|
|
1184
|
+
export type AsObject = {
|
|
1185
|
+
data?: PaymentMethodsForAuditRequest.AsObject,
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
export class GetPaymentMethodsForAuditRequest extends jspb.Message {
|
|
1190
|
+
getData(): PaymentMethodsForAuditRequest | undefined;
|
|
1191
|
+
setData(value?: PaymentMethodsForAuditRequest): GetPaymentMethodsForAuditRequest;
|
|
1192
|
+
hasData(): boolean;
|
|
1193
|
+
clearData(): GetPaymentMethodsForAuditRequest;
|
|
1194
|
+
|
|
1195
|
+
serializeBinary(): Uint8Array;
|
|
1196
|
+
toObject(includeInstance?: boolean): GetPaymentMethodsForAuditRequest.AsObject;
|
|
1197
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodsForAuditRequest): GetPaymentMethodsForAuditRequest.AsObject;
|
|
1198
|
+
static serializeBinaryToWriter(message: GetPaymentMethodsForAuditRequest, writer: jspb.BinaryWriter): void;
|
|
1199
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodsForAuditRequest;
|
|
1200
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodsForAuditRequest, reader: jspb.BinaryReader): GetPaymentMethodsForAuditRequest;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
export namespace GetPaymentMethodsForAuditRequest {
|
|
1204
|
+
export type AsObject = {
|
|
1205
|
+
data?: PaymentMethodsForAuditRequest.AsObject,
|
|
1206
|
+
}
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
export class GetPaymentMethodsInternalRequest extends jspb.Message {
|
|
1210
|
+
getData(): PaymentMethodsInternalGetRequest | undefined;
|
|
1211
|
+
setData(value?: PaymentMethodsInternalGetRequest): GetPaymentMethodsInternalRequest;
|
|
1212
|
+
hasData(): boolean;
|
|
1213
|
+
clearData(): GetPaymentMethodsInternalRequest;
|
|
1214
|
+
|
|
1215
|
+
serializeBinary(): Uint8Array;
|
|
1216
|
+
toObject(includeInstance?: boolean): GetPaymentMethodsInternalRequest.AsObject;
|
|
1217
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodsInternalRequest): GetPaymentMethodsInternalRequest.AsObject;
|
|
1218
|
+
static serializeBinaryToWriter(message: GetPaymentMethodsInternalRequest, writer: jspb.BinaryWriter): void;
|
|
1219
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodsInternalRequest;
|
|
1220
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodsInternalRequest, reader: jspb.BinaryReader): GetPaymentMethodsInternalRequest;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
export namespace GetPaymentMethodsInternalRequest {
|
|
1224
|
+
export type AsObject = {
|
|
1225
|
+
data?: PaymentMethodsInternalGetRequest.AsObject,
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
export class GetPaymentMethodsRequest extends jspb.Message {
|
|
1230
|
+
getData(): AccessToken | undefined;
|
|
1231
|
+
setData(value?: AccessToken): GetPaymentMethodsRequest;
|
|
1232
|
+
hasData(): boolean;
|
|
1233
|
+
clearData(): GetPaymentMethodsRequest;
|
|
1234
|
+
|
|
1235
|
+
serializeBinary(): Uint8Array;
|
|
1236
|
+
toObject(includeInstance?: boolean): GetPaymentMethodsRequest.AsObject;
|
|
1237
|
+
static toObject(includeInstance: boolean, msg: GetPaymentMethodsRequest): GetPaymentMethodsRequest.AsObject;
|
|
1238
|
+
static serializeBinaryToWriter(message: GetPaymentMethodsRequest, writer: jspb.BinaryWriter): void;
|
|
1239
|
+
static deserializeBinary(bytes: Uint8Array): GetPaymentMethodsRequest;
|
|
1240
|
+
static deserializeBinaryFromReader(message: GetPaymentMethodsRequest, reader: jspb.BinaryReader): GetPaymentMethodsRequest;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
export namespace GetPaymentMethodsRequest {
|
|
1244
|
+
export type AsObject = {
|
|
1245
|
+
data?: AccessToken.AsObject,
|
|
1246
|
+
}
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
export class GetPriorityBillConfigsForPaymentMethodRequest extends jspb.Message {
|
|
1250
|
+
getData(): BillConfigsForPaymentRequest | undefined;
|
|
1251
|
+
setData(value?: BillConfigsForPaymentRequest): GetPriorityBillConfigsForPaymentMethodRequest;
|
|
1252
|
+
hasData(): boolean;
|
|
1253
|
+
clearData(): GetPriorityBillConfigsForPaymentMethodRequest;
|
|
1254
|
+
|
|
1255
|
+
serializeBinary(): Uint8Array;
|
|
1256
|
+
toObject(includeInstance?: boolean): GetPriorityBillConfigsForPaymentMethodRequest.AsObject;
|
|
1257
|
+
static toObject(includeInstance: boolean, msg: GetPriorityBillConfigsForPaymentMethodRequest): GetPriorityBillConfigsForPaymentMethodRequest.AsObject;
|
|
1258
|
+
static serializeBinaryToWriter(message: GetPriorityBillConfigsForPaymentMethodRequest, writer: jspb.BinaryWriter): void;
|
|
1259
|
+
static deserializeBinary(bytes: Uint8Array): GetPriorityBillConfigsForPaymentMethodRequest;
|
|
1260
|
+
static deserializeBinaryFromReader(message: GetPriorityBillConfigsForPaymentMethodRequest, reader: jspb.BinaryReader): GetPriorityBillConfigsForPaymentMethodRequest;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
export namespace GetPriorityBillConfigsForPaymentMethodRequest {
|
|
1264
|
+
export type AsObject = {
|
|
1265
|
+
data?: BillConfigsForPaymentRequest.AsObject,
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
export class GetZenithPaymentDetailsRequest extends jspb.Message {
|
|
1270
|
+
getData(): ZenithPaymentDetailsRequest | undefined;
|
|
1271
|
+
setData(value?: ZenithPaymentDetailsRequest): GetZenithPaymentDetailsRequest;
|
|
1272
|
+
hasData(): boolean;
|
|
1273
|
+
clearData(): GetZenithPaymentDetailsRequest;
|
|
1274
|
+
|
|
1275
|
+
serializeBinary(): Uint8Array;
|
|
1276
|
+
toObject(includeInstance?: boolean): GetZenithPaymentDetailsRequest.AsObject;
|
|
1277
|
+
static toObject(includeInstance: boolean, msg: GetZenithPaymentDetailsRequest): GetZenithPaymentDetailsRequest.AsObject;
|
|
1278
|
+
static serializeBinaryToWriter(message: GetZenithPaymentDetailsRequest, writer: jspb.BinaryWriter): void;
|
|
1279
|
+
static deserializeBinary(bytes: Uint8Array): GetZenithPaymentDetailsRequest;
|
|
1280
|
+
static deserializeBinaryFromReader(message: GetZenithPaymentDetailsRequest, reader: jspb.BinaryReader): GetZenithPaymentDetailsRequest;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
export namespace GetZenithPaymentDetailsRequest {
|
|
1284
|
+
export type AsObject = {
|
|
1285
|
+
data?: ZenithPaymentDetailsRequest.AsObject,
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
export class GooglePay extends jspb.Message {
|
|
1290
|
+
getPaymentdatajson(): string;
|
|
1291
|
+
setPaymentdatajson(value: string): GooglePay;
|
|
1292
|
+
|
|
1293
|
+
getGateway(): Gateway;
|
|
1294
|
+
setGateway(value: Gateway): GooglePay;
|
|
1295
|
+
|
|
1296
|
+
getPaymentType(): string;
|
|
1297
|
+
setPaymentType(value: string): GooglePay;
|
|
1298
|
+
|
|
1299
|
+
getCardvariant(): string;
|
|
1300
|
+
setCardvariant(value: string): GooglePay;
|
|
1301
|
+
|
|
1302
|
+
serializeBinary(): Uint8Array;
|
|
1303
|
+
toObject(includeInstance?: boolean): GooglePay.AsObject;
|
|
1304
|
+
static toObject(includeInstance: boolean, msg: GooglePay): GooglePay.AsObject;
|
|
1305
|
+
static serializeBinaryToWriter(message: GooglePay, writer: jspb.BinaryWriter): void;
|
|
1306
|
+
static deserializeBinary(bytes: Uint8Array): GooglePay;
|
|
1307
|
+
static deserializeBinaryFromReader(message: GooglePay, reader: jspb.BinaryReader): GooglePay;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
export namespace GooglePay {
|
|
1311
|
+
export type AsObject = {
|
|
1312
|
+
paymentdatajson: string,
|
|
1313
|
+
gateway: Gateway,
|
|
1314
|
+
paymentType: string,
|
|
1315
|
+
cardvariant: string,
|
|
1316
|
+
}
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
export class GooglePayDetail extends jspb.Message {
|
|
1320
|
+
getGooglepay(): GooglePay | undefined;
|
|
1321
|
+
setGooglepay(value?: GooglePay): GooglePayDetail;
|
|
1322
|
+
hasGooglepay(): boolean;
|
|
1323
|
+
clearGooglepay(): GooglePayDetail;
|
|
1324
|
+
|
|
1325
|
+
getFingerprint(): string;
|
|
1326
|
+
setFingerprint(value: string): GooglePayDetail;
|
|
1327
|
+
|
|
1328
|
+
getLast4(): string;
|
|
1329
|
+
setLast4(value: string): GooglePayDetail;
|
|
1330
|
+
|
|
1331
|
+
getStripecardid(): string;
|
|
1332
|
+
setStripecardid(value: string): GooglePayDetail;
|
|
1333
|
+
|
|
1334
|
+
getStripetokenid(): string;
|
|
1335
|
+
setStripetokenid(value: string): GooglePayDetail;
|
|
1336
|
+
|
|
1337
|
+
getPaymentType(): string;
|
|
1338
|
+
setPaymentType(value: string): GooglePayDetail;
|
|
1339
|
+
|
|
1340
|
+
getCardvariant(): string;
|
|
1341
|
+
setCardvariant(value: string): GooglePayDetail;
|
|
1342
|
+
|
|
1343
|
+
getStripecustomerid(): string;
|
|
1344
|
+
setStripecustomerid(value: string): GooglePayDetail;
|
|
1345
|
+
|
|
1346
|
+
getCreateddatetime(): string;
|
|
1347
|
+
setCreateddatetime(value: string): GooglePayDetail;
|
|
1348
|
+
|
|
1349
|
+
getFatzebratokenid(): string;
|
|
1350
|
+
setFatzebratokenid(value: string): GooglePayDetail;
|
|
1351
|
+
|
|
1352
|
+
getIscreditcard(): boolean;
|
|
1353
|
+
setIscreditcard(value: boolean): GooglePayDetail;
|
|
1354
|
+
|
|
1355
|
+
getIsdebitcard(): boolean;
|
|
1356
|
+
setIsdebitcard(value: boolean): GooglePayDetail;
|
|
1357
|
+
|
|
1358
|
+
getIseftpos(): boolean;
|
|
1359
|
+
setIseftpos(value: boolean): GooglePayDetail;
|
|
1360
|
+
|
|
1361
|
+
getIsinternational(): boolean;
|
|
1362
|
+
setIsinternational(value: boolean): GooglePayDetail;
|
|
1363
|
+
|
|
1364
|
+
getIsprepaid(): boolean;
|
|
1365
|
+
setIsprepaid(value: boolean): GooglePayDetail;
|
|
1366
|
+
|
|
1367
|
+
getIscryptocomcard(): boolean;
|
|
1368
|
+
setIscryptocomcard(value: boolean): GooglePayDetail;
|
|
1369
|
+
|
|
1370
|
+
getIscorporate(): boolean;
|
|
1371
|
+
setIscorporate(value: boolean): GooglePayDetail;
|
|
1372
|
+
|
|
1373
|
+
getIssmallbusiness(): boolean;
|
|
1374
|
+
setIssmallbusiness(value: boolean): GooglePayDetail;
|
|
1375
|
+
|
|
1376
|
+
serializeBinary(): Uint8Array;
|
|
1377
|
+
toObject(includeInstance?: boolean): GooglePayDetail.AsObject;
|
|
1378
|
+
static toObject(includeInstance: boolean, msg: GooglePayDetail): GooglePayDetail.AsObject;
|
|
1379
|
+
static serializeBinaryToWriter(message: GooglePayDetail, writer: jspb.BinaryWriter): void;
|
|
1380
|
+
static deserializeBinary(bytes: Uint8Array): GooglePayDetail;
|
|
1381
|
+
static deserializeBinaryFromReader(message: GooglePayDetail, reader: jspb.BinaryReader): GooglePayDetail;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
export namespace GooglePayDetail {
|
|
1385
|
+
export type AsObject = {
|
|
1386
|
+
googlepay?: GooglePay.AsObject,
|
|
1387
|
+
fingerprint: string,
|
|
1388
|
+
last4: string,
|
|
1389
|
+
stripecardid: string,
|
|
1390
|
+
stripetokenid: string,
|
|
1391
|
+
paymentType: string,
|
|
1392
|
+
cardvariant: string,
|
|
1393
|
+
stripecustomerid: string,
|
|
1394
|
+
createddatetime: string,
|
|
1395
|
+
fatzebratokenid: string,
|
|
1396
|
+
iscreditcard: boolean,
|
|
1397
|
+
isdebitcard: boolean,
|
|
1398
|
+
iseftpos: boolean,
|
|
1399
|
+
isinternational: boolean,
|
|
1400
|
+
isprepaid: boolean,
|
|
1401
|
+
iscryptocomcard: boolean,
|
|
1402
|
+
iscorporate: boolean,
|
|
1403
|
+
issmallbusiness: boolean,
|
|
1404
|
+
}
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
export class MaskedCreditCard extends jspb.Message {
|
|
1408
|
+
getCreditcardid(): number;
|
|
1409
|
+
setCreditcardid(value: number): MaskedCreditCard;
|
|
1410
|
+
|
|
1411
|
+
getNameoncard(): string;
|
|
1412
|
+
setNameoncard(value: string): MaskedCreditCard;
|
|
1413
|
+
|
|
1414
|
+
getCreditcardnumber(): string;
|
|
1415
|
+
setCreditcardnumber(value: string): MaskedCreditCard;
|
|
1416
|
+
|
|
1417
|
+
getCardtype(): string;
|
|
1418
|
+
setCardtype(value: string): MaskedCreditCard;
|
|
1419
|
+
|
|
1420
|
+
getMonthexpiry(): number;
|
|
1421
|
+
setMonthexpiry(value: number): MaskedCreditCard;
|
|
1422
|
+
|
|
1423
|
+
getYearexpiry(): number;
|
|
1424
|
+
setYearexpiry(value: number): MaskedCreditCard;
|
|
1425
|
+
|
|
1426
|
+
getNickname(): string;
|
|
1427
|
+
setNickname(value: string): MaskedCreditCard;
|
|
1428
|
+
|
|
1429
|
+
getCreateddatetime(): string;
|
|
1430
|
+
setCreateddatetime(value: string): MaskedCreditCard;
|
|
1431
|
+
|
|
1432
|
+
getTokenisedcreditcardid(): number;
|
|
1433
|
+
setTokenisedcreditcardid(value: number): MaskedCreditCard;
|
|
1434
|
+
|
|
1435
|
+
getBankname(): string;
|
|
1436
|
+
setBankname(value: string): MaskedCreditCard;
|
|
1437
|
+
|
|
1438
|
+
getBanklogoname(): string;
|
|
1439
|
+
setBanklogoname(value: string): MaskedCreditCard;
|
|
1440
|
+
|
|
1441
|
+
getColourscheme(): ColourScheme | undefined;
|
|
1442
|
+
setColourscheme(value?: ColourScheme): MaskedCreditCard;
|
|
1443
|
+
hasColourscheme(): boolean;
|
|
1444
|
+
clearColourscheme(): MaskedCreditCard;
|
|
1445
|
+
|
|
1446
|
+
getIsdeleted(): boolean;
|
|
1447
|
+
setIsdeleted(value: boolean): MaskedCreditCard;
|
|
1448
|
+
|
|
1449
|
+
getIscreditcard(): boolean;
|
|
1450
|
+
setIscreditcard(value: boolean): MaskedCreditCard;
|
|
1451
|
+
|
|
1452
|
+
getIsdebitcard(): boolean;
|
|
1453
|
+
setIsdebitcard(value: boolean): MaskedCreditCard;
|
|
1454
|
+
|
|
1455
|
+
getIsverified(): boolean;
|
|
1456
|
+
setIsverified(value: boolean): MaskedCreditCard;
|
|
1457
|
+
|
|
1458
|
+
getIseftpos(): boolean;
|
|
1459
|
+
setIseftpos(value: boolean): MaskedCreditCard;
|
|
1460
|
+
|
|
1461
|
+
getIsinternational(): boolean;
|
|
1462
|
+
setIsinternational(value: boolean): MaskedCreditCard;
|
|
1463
|
+
|
|
1464
|
+
getIsprepaid(): boolean;
|
|
1465
|
+
setIsprepaid(value: boolean): MaskedCreditCard;
|
|
1466
|
+
|
|
1467
|
+
getRequires3ds(): boolean;
|
|
1468
|
+
setRequires3ds(value: boolean): MaskedCreditCard;
|
|
1469
|
+
|
|
1470
|
+
getIscorporate(): boolean;
|
|
1471
|
+
setIscorporate(value: boolean): MaskedCreditCard;
|
|
1472
|
+
|
|
1473
|
+
getIssmallbusiness(): boolean;
|
|
1474
|
+
setIssmallbusiness(value: boolean): MaskedCreditCard;
|
|
1475
|
+
|
|
1476
|
+
getIscryptocomcard(): boolean;
|
|
1477
|
+
setIscryptocomcard(value: boolean): MaskedCreditCard;
|
|
1478
|
+
|
|
1479
|
+
serializeBinary(): Uint8Array;
|
|
1480
|
+
toObject(includeInstance?: boolean): MaskedCreditCard.AsObject;
|
|
1481
|
+
static toObject(includeInstance: boolean, msg: MaskedCreditCard): MaskedCreditCard.AsObject;
|
|
1482
|
+
static serializeBinaryToWriter(message: MaskedCreditCard, writer: jspb.BinaryWriter): void;
|
|
1483
|
+
static deserializeBinary(bytes: Uint8Array): MaskedCreditCard;
|
|
1484
|
+
static deserializeBinaryFromReader(message: MaskedCreditCard, reader: jspb.BinaryReader): MaskedCreditCard;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
export namespace MaskedCreditCard {
|
|
1488
|
+
export type AsObject = {
|
|
1489
|
+
creditcardid: number,
|
|
1490
|
+
nameoncard: string,
|
|
1491
|
+
creditcardnumber: string,
|
|
1492
|
+
cardtype: string,
|
|
1493
|
+
monthexpiry: number,
|
|
1494
|
+
yearexpiry: number,
|
|
1495
|
+
nickname: string,
|
|
1496
|
+
createddatetime: string,
|
|
1497
|
+
tokenisedcreditcardid: number,
|
|
1498
|
+
bankname: string,
|
|
1499
|
+
banklogoname: string,
|
|
1500
|
+
colourscheme?: ColourScheme.AsObject,
|
|
1501
|
+
isdeleted: boolean,
|
|
1502
|
+
iscreditcard: boolean,
|
|
1503
|
+
isdebitcard: boolean,
|
|
1504
|
+
isverified: boolean,
|
|
1505
|
+
iseftpos: boolean,
|
|
1506
|
+
isinternational: boolean,
|
|
1507
|
+
isprepaid: boolean,
|
|
1508
|
+
requires3ds: boolean,
|
|
1509
|
+
iscorporate: boolean,
|
|
1510
|
+
issmallbusiness: boolean,
|
|
1511
|
+
iscryptocomcard: boolean,
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
export class MasterBinLookupOverrideUpdateRequest extends jspb.Message {
|
|
1516
|
+
getBin(): string;
|
|
1517
|
+
setBin(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1518
|
+
|
|
1519
|
+
getPanlength(): number;
|
|
1520
|
+
setPanlength(value: number): MasterBinLookupOverrideUpdateRequest;
|
|
1521
|
+
|
|
1522
|
+
getLuhn(): boolean;
|
|
1523
|
+
setLuhn(value: boolean): MasterBinLookupOverrideUpdateRequest;
|
|
1524
|
+
|
|
1525
|
+
getBincardscheme(): string;
|
|
1526
|
+
setBincardscheme(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1527
|
+
|
|
1528
|
+
getBincardtype(): string;
|
|
1529
|
+
setBincardtype(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1530
|
+
|
|
1531
|
+
getBincardbrand(): string;
|
|
1532
|
+
setBincardbrand(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1533
|
+
|
|
1534
|
+
getBincardprepaid(): boolean;
|
|
1535
|
+
setBincardprepaid(value: boolean): MasterBinLookupOverrideUpdateRequest;
|
|
1536
|
+
|
|
1537
|
+
getCountrynumeric(): string;
|
|
1538
|
+
setCountrynumeric(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1539
|
+
|
|
1540
|
+
getCountryalpha2(): string;
|
|
1541
|
+
setCountryalpha2(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1542
|
+
|
|
1543
|
+
getCountryname(): string;
|
|
1544
|
+
setCountryname(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1545
|
+
|
|
1546
|
+
getCountrycurrency(): string;
|
|
1547
|
+
setCountrycurrency(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1548
|
+
|
|
1549
|
+
getCountrylatitude(): number;
|
|
1550
|
+
setCountrylatitude(value: number): MasterBinLookupOverrideUpdateRequest;
|
|
1551
|
+
|
|
1552
|
+
getCountrylongitude(): number;
|
|
1553
|
+
setCountrylongitude(value: number): MasterBinLookupOverrideUpdateRequest;
|
|
1554
|
+
|
|
1555
|
+
getBankname(): string;
|
|
1556
|
+
setBankname(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1557
|
+
|
|
1558
|
+
getBankdisplayname(): string;
|
|
1559
|
+
setBankdisplayname(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1560
|
+
|
|
1561
|
+
getBankurl(): string;
|
|
1562
|
+
setBankurl(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1563
|
+
|
|
1564
|
+
getBankphone(): string;
|
|
1565
|
+
setBankphone(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1566
|
+
|
|
1567
|
+
getBanklogoname(): string;
|
|
1568
|
+
setBanklogoname(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1569
|
+
|
|
1570
|
+
getCardtype(): string;
|
|
1571
|
+
setCardtype(value: string): MasterBinLookupOverrideUpdateRequest;
|
|
1572
|
+
|
|
1573
|
+
getIseftpos(): boolean;
|
|
1574
|
+
setIseftpos(value: boolean): MasterBinLookupOverrideUpdateRequest;
|
|
1575
|
+
|
|
1576
|
+
getIsinternational(): boolean;
|
|
1577
|
+
setIsinternational(value: boolean): MasterBinLookupOverrideUpdateRequest;
|
|
1578
|
+
|
|
1579
|
+
serializeBinary(): Uint8Array;
|
|
1580
|
+
toObject(includeInstance?: boolean): MasterBinLookupOverrideUpdateRequest.AsObject;
|
|
1581
|
+
static toObject(includeInstance: boolean, msg: MasterBinLookupOverrideUpdateRequest): MasterBinLookupOverrideUpdateRequest.AsObject;
|
|
1582
|
+
static serializeBinaryToWriter(message: MasterBinLookupOverrideUpdateRequest, writer: jspb.BinaryWriter): void;
|
|
1583
|
+
static deserializeBinary(bytes: Uint8Array): MasterBinLookupOverrideUpdateRequest;
|
|
1584
|
+
static deserializeBinaryFromReader(message: MasterBinLookupOverrideUpdateRequest, reader: jspb.BinaryReader): MasterBinLookupOverrideUpdateRequest;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
export namespace MasterBinLookupOverrideUpdateRequest {
|
|
1588
|
+
export type AsObject = {
|
|
1589
|
+
bin: string,
|
|
1590
|
+
panlength: number,
|
|
1591
|
+
luhn: boolean,
|
|
1592
|
+
bincardscheme: string,
|
|
1593
|
+
bincardtype: string,
|
|
1594
|
+
bincardbrand: string,
|
|
1595
|
+
bincardprepaid: boolean,
|
|
1596
|
+
countrynumeric: string,
|
|
1597
|
+
countryalpha2: string,
|
|
1598
|
+
countryname: string,
|
|
1599
|
+
countrycurrency: string,
|
|
1600
|
+
countrylatitude: number,
|
|
1601
|
+
countrylongitude: number,
|
|
1602
|
+
bankname: string,
|
|
1603
|
+
bankdisplayname: string,
|
|
1604
|
+
bankurl: string,
|
|
1605
|
+
bankphone: string,
|
|
1606
|
+
banklogoname: string,
|
|
1607
|
+
cardtype: string,
|
|
1608
|
+
iseftpos: boolean,
|
|
1609
|
+
isinternational: boolean,
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
export class PaymentMethod extends jspb.Message {
|
|
1614
|
+
getPaymentmethodid(): number;
|
|
1615
|
+
setPaymentmethodid(value: number): PaymentMethod;
|
|
1616
|
+
|
|
1617
|
+
getPaymenttype(): string;
|
|
1618
|
+
setPaymenttype(value: string): PaymentMethod;
|
|
1619
|
+
|
|
1620
|
+
getMaskedcreditcard(): MaskedCreditCard | undefined;
|
|
1621
|
+
setMaskedcreditcard(value?: MaskedCreditCard): PaymentMethod;
|
|
1622
|
+
hasMaskedcreditcard(): boolean;
|
|
1623
|
+
clearMaskedcreditcard(): PaymentMethod;
|
|
1624
|
+
|
|
1625
|
+
getBankaccount(): BankAccount | undefined;
|
|
1626
|
+
setBankaccount(value?: BankAccount): PaymentMethod;
|
|
1627
|
+
hasBankaccount(): boolean;
|
|
1628
|
+
clearBankaccount(): PaymentMethod;
|
|
1629
|
+
|
|
1630
|
+
getActivationsList(): Array<Activation>;
|
|
1631
|
+
setActivationsList(value: Array<Activation>): PaymentMethod;
|
|
1632
|
+
clearActivationsList(): PaymentMethod;
|
|
1633
|
+
addActivations(value?: Activation, index?: number): Activation;
|
|
1634
|
+
|
|
1635
|
+
getApplepaydetail(): ApplePayDetail | undefined;
|
|
1636
|
+
setApplepaydetail(value?: ApplePayDetail): PaymentMethod;
|
|
1637
|
+
hasApplepaydetail(): boolean;
|
|
1638
|
+
clearApplepaydetail(): PaymentMethod;
|
|
1639
|
+
|
|
1640
|
+
getGooglepaydetail(): GooglePayDetail | undefined;
|
|
1641
|
+
setGooglepaydetail(value?: GooglePayDetail): PaymentMethod;
|
|
1642
|
+
hasGooglepaydetail(): boolean;
|
|
1643
|
+
clearGooglepaydetail(): PaymentMethod;
|
|
1644
|
+
|
|
1645
|
+
serializeBinary(): Uint8Array;
|
|
1646
|
+
toObject(includeInstance?: boolean): PaymentMethod.AsObject;
|
|
1647
|
+
static toObject(includeInstance: boolean, msg: PaymentMethod): PaymentMethod.AsObject;
|
|
1648
|
+
static serializeBinaryToWriter(message: PaymentMethod, writer: jspb.BinaryWriter): void;
|
|
1649
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethod;
|
|
1650
|
+
static deserializeBinaryFromReader(message: PaymentMethod, reader: jspb.BinaryReader): PaymentMethod;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
export namespace PaymentMethod {
|
|
1654
|
+
export type AsObject = {
|
|
1655
|
+
paymentmethodid: number,
|
|
1656
|
+
paymenttype: string,
|
|
1657
|
+
maskedcreditcard?: MaskedCreditCard.AsObject,
|
|
1658
|
+
bankaccount?: BankAccount.AsObject,
|
|
1659
|
+
activationsList: Array<Activation.AsObject>,
|
|
1660
|
+
applepaydetail?: ApplePayDetail.AsObject,
|
|
1661
|
+
googlepaydetail?: GooglePayDetail.AsObject,
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
export class PaymentMethodDeleteRequest extends jspb.Message {
|
|
1666
|
+
getPaymentmethodid(): number;
|
|
1667
|
+
setPaymentmethodid(value: number): PaymentMethodDeleteRequest;
|
|
1668
|
+
|
|
1669
|
+
getAccesstoken(): string;
|
|
1670
|
+
setAccesstoken(value: string): PaymentMethodDeleteRequest;
|
|
1671
|
+
|
|
1672
|
+
getIsconfirmeddelete(): boolean;
|
|
1673
|
+
setIsconfirmeddelete(value: boolean): PaymentMethodDeleteRequest;
|
|
1674
|
+
|
|
1675
|
+
serializeBinary(): Uint8Array;
|
|
1676
|
+
toObject(includeInstance?: boolean): PaymentMethodDeleteRequest.AsObject;
|
|
1677
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodDeleteRequest): PaymentMethodDeleteRequest.AsObject;
|
|
1678
|
+
static serializeBinaryToWriter(message: PaymentMethodDeleteRequest, writer: jspb.BinaryWriter): void;
|
|
1679
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodDeleteRequest;
|
|
1680
|
+
static deserializeBinaryFromReader(message: PaymentMethodDeleteRequest, reader: jspb.BinaryReader): PaymentMethodDeleteRequest;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
export namespace PaymentMethodDeleteRequest {
|
|
1684
|
+
export type AsObject = {
|
|
1685
|
+
paymentmethodid: number,
|
|
1686
|
+
accesstoken: string,
|
|
1687
|
+
isconfirmeddelete: boolean,
|
|
1688
|
+
}
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
export class PaymentMethodExpiringForScheduledPaymentsNotificationRequest extends jspb.Message {
|
|
1692
|
+
getPaymentmethodidsList(): Array<number>;
|
|
1693
|
+
setPaymentmethodidsList(value: Array<number>): PaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
1694
|
+
clearPaymentmethodidsList(): PaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
1695
|
+
addPaymentmethodids(value: number, index?: number): PaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
1696
|
+
|
|
1697
|
+
serializeBinary(): Uint8Array;
|
|
1698
|
+
toObject(includeInstance?: boolean): PaymentMethodExpiringForScheduledPaymentsNotificationRequest.AsObject;
|
|
1699
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodExpiringForScheduledPaymentsNotificationRequest): PaymentMethodExpiringForScheduledPaymentsNotificationRequest.AsObject;
|
|
1700
|
+
static serializeBinaryToWriter(message: PaymentMethodExpiringForScheduledPaymentsNotificationRequest, writer: jspb.BinaryWriter): void;
|
|
1701
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
1702
|
+
static deserializeBinaryFromReader(message: PaymentMethodExpiringForScheduledPaymentsNotificationRequest, reader: jspb.BinaryReader): PaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
export namespace PaymentMethodExpiringForScheduledPaymentsNotificationRequest {
|
|
1706
|
+
export type AsObject = {
|
|
1707
|
+
paymentmethodidsList: Array<number>,
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
export class PaymentMethodForPaymentRequest extends jspb.Message {
|
|
1712
|
+
getPaymentmethodid(): number;
|
|
1713
|
+
setPaymentmethodid(value: number): PaymentMethodForPaymentRequest;
|
|
1714
|
+
|
|
1715
|
+
getAccesstoken(): string;
|
|
1716
|
+
setAccesstoken(value: string): PaymentMethodForPaymentRequest;
|
|
1717
|
+
|
|
1718
|
+
getUserid(): number;
|
|
1719
|
+
setUserid(value: number): PaymentMethodForPaymentRequest;
|
|
1720
|
+
|
|
1721
|
+
getIspaymentaccesskey(): boolean;
|
|
1722
|
+
setIspaymentaccesskey(value: boolean): PaymentMethodForPaymentRequest;
|
|
1723
|
+
|
|
1724
|
+
getCvv(): string;
|
|
1725
|
+
setCvv(value: string): PaymentMethodForPaymentRequest;
|
|
1726
|
+
|
|
1727
|
+
serializeBinary(): Uint8Array;
|
|
1728
|
+
toObject(includeInstance?: boolean): PaymentMethodForPaymentRequest.AsObject;
|
|
1729
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodForPaymentRequest): PaymentMethodForPaymentRequest.AsObject;
|
|
1730
|
+
static serializeBinaryToWriter(message: PaymentMethodForPaymentRequest, writer: jspb.BinaryWriter): void;
|
|
1731
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodForPaymentRequest;
|
|
1732
|
+
static deserializeBinaryFromReader(message: PaymentMethodForPaymentRequest, reader: jspb.BinaryReader): PaymentMethodForPaymentRequest;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
export namespace PaymentMethodForPaymentRequest {
|
|
1736
|
+
export type AsObject = {
|
|
1737
|
+
paymentmethodid: number,
|
|
1738
|
+
accesstoken: string,
|
|
1739
|
+
userid: number,
|
|
1740
|
+
ispaymentaccesskey: boolean,
|
|
1741
|
+
cvv: string,
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
export class PaymentMethodForPaymentResponse extends jspb.Message {
|
|
1746
|
+
getResponsecode(): ResponseCode | undefined;
|
|
1747
|
+
setResponsecode(value?: ResponseCode): PaymentMethodForPaymentResponse;
|
|
1748
|
+
hasResponsecode(): boolean;
|
|
1749
|
+
clearResponsecode(): PaymentMethodForPaymentResponse;
|
|
1750
|
+
|
|
1751
|
+
getPaymentmethodid(): number;
|
|
1752
|
+
setPaymentmethodid(value: number): PaymentMethodForPaymentResponse;
|
|
1753
|
+
|
|
1754
|
+
getPaymenttype(): string;
|
|
1755
|
+
setPaymenttype(value: string): PaymentMethodForPaymentResponse;
|
|
1756
|
+
|
|
1757
|
+
getCreditcard(): CreditCard | undefined;
|
|
1758
|
+
setCreditcard(value?: CreditCard): PaymentMethodForPaymentResponse;
|
|
1759
|
+
hasCreditcard(): boolean;
|
|
1760
|
+
clearCreditcard(): PaymentMethodForPaymentResponse;
|
|
1761
|
+
|
|
1762
|
+
getBankaccount(): BankAccount | undefined;
|
|
1763
|
+
setBankaccount(value?: BankAccount): PaymentMethodForPaymentResponse;
|
|
1764
|
+
hasBankaccount(): boolean;
|
|
1765
|
+
clearBankaccount(): PaymentMethodForPaymentResponse;
|
|
1766
|
+
|
|
1767
|
+
getApplepaydetail(): ApplePayDetail | undefined;
|
|
1768
|
+
setApplepaydetail(value?: ApplePayDetail): PaymentMethodForPaymentResponse;
|
|
1769
|
+
hasApplepaydetail(): boolean;
|
|
1770
|
+
clearApplepaydetail(): PaymentMethodForPaymentResponse;
|
|
1771
|
+
|
|
1772
|
+
getGooglepaydetail(): GooglePayDetail | undefined;
|
|
1773
|
+
setGooglepaydetail(value?: GooglePayDetail): PaymentMethodForPaymentResponse;
|
|
1774
|
+
hasGooglepaydetail(): boolean;
|
|
1775
|
+
clearGooglepaydetail(): PaymentMethodForPaymentResponse;
|
|
1776
|
+
|
|
1777
|
+
serializeBinary(): Uint8Array;
|
|
1778
|
+
toObject(includeInstance?: boolean): PaymentMethodForPaymentResponse.AsObject;
|
|
1779
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodForPaymentResponse): PaymentMethodForPaymentResponse.AsObject;
|
|
1780
|
+
static serializeBinaryToWriter(message: PaymentMethodForPaymentResponse, writer: jspb.BinaryWriter): void;
|
|
1781
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodForPaymentResponse;
|
|
1782
|
+
static deserializeBinaryFromReader(message: PaymentMethodForPaymentResponse, reader: jspb.BinaryReader): PaymentMethodForPaymentResponse;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
export namespace PaymentMethodForPaymentResponse {
|
|
1786
|
+
export type AsObject = {
|
|
1787
|
+
responsecode?: ResponseCode.AsObject,
|
|
1788
|
+
paymentmethodid: number,
|
|
1789
|
+
paymenttype: string,
|
|
1790
|
+
creditcard?: CreditCard.AsObject,
|
|
1791
|
+
bankaccount?: BankAccount.AsObject,
|
|
1792
|
+
applepaydetail?: ApplePayDetail.AsObject,
|
|
1793
|
+
googlepaydetail?: GooglePayDetail.AsObject,
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
export class PaymentMethodGroup extends jspb.Message {
|
|
1798
|
+
getPaymentmethodgroupid(): number;
|
|
1799
|
+
setPaymentmethodgroupid(value: number): PaymentMethodGroup;
|
|
1800
|
+
|
|
1801
|
+
getName(): string;
|
|
1802
|
+
setName(value: string): PaymentMethodGroup;
|
|
1803
|
+
|
|
1804
|
+
getPaymentmethodsList(): Array<PaymentMethodType>;
|
|
1805
|
+
setPaymentmethodsList(value: Array<PaymentMethodType>): PaymentMethodGroup;
|
|
1806
|
+
clearPaymentmethodsList(): PaymentMethodGroup;
|
|
1807
|
+
addPaymentmethods(value?: PaymentMethodType, index?: number): PaymentMethodType;
|
|
1808
|
+
|
|
1809
|
+
serializeBinary(): Uint8Array;
|
|
1810
|
+
toObject(includeInstance?: boolean): PaymentMethodGroup.AsObject;
|
|
1811
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodGroup): PaymentMethodGroup.AsObject;
|
|
1812
|
+
static serializeBinaryToWriter(message: PaymentMethodGroup, writer: jspb.BinaryWriter): void;
|
|
1813
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodGroup;
|
|
1814
|
+
static deserializeBinaryFromReader(message: PaymentMethodGroup, reader: jspb.BinaryReader): PaymentMethodGroup;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
export namespace PaymentMethodGroup {
|
|
1818
|
+
export type AsObject = {
|
|
1819
|
+
paymentmethodgroupid: number,
|
|
1820
|
+
name: string,
|
|
1821
|
+
paymentmethodsList: Array<PaymentMethodType.AsObject>,
|
|
1822
|
+
}
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
export class PaymentMethodGroupCreateRequest extends jspb.Message {
|
|
1826
|
+
getName(): string;
|
|
1827
|
+
setName(value: string): PaymentMethodGroupCreateRequest;
|
|
1828
|
+
|
|
1829
|
+
getPaymentmethodsList(): Array<number>;
|
|
1830
|
+
setPaymentmethodsList(value: Array<number>): PaymentMethodGroupCreateRequest;
|
|
1831
|
+
clearPaymentmethodsList(): PaymentMethodGroupCreateRequest;
|
|
1832
|
+
addPaymentmethods(value: number, index?: number): PaymentMethodGroupCreateRequest;
|
|
1833
|
+
|
|
1834
|
+
serializeBinary(): Uint8Array;
|
|
1835
|
+
toObject(includeInstance?: boolean): PaymentMethodGroupCreateRequest.AsObject;
|
|
1836
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodGroupCreateRequest): PaymentMethodGroupCreateRequest.AsObject;
|
|
1837
|
+
static serializeBinaryToWriter(message: PaymentMethodGroupCreateRequest, writer: jspb.BinaryWriter): void;
|
|
1838
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodGroupCreateRequest;
|
|
1839
|
+
static deserializeBinaryFromReader(message: PaymentMethodGroupCreateRequest, reader: jspb.BinaryReader): PaymentMethodGroupCreateRequest;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
export namespace PaymentMethodGroupCreateRequest {
|
|
1843
|
+
export type AsObject = {
|
|
1844
|
+
name: string,
|
|
1845
|
+
paymentmethodsList: Array<number>,
|
|
1846
|
+
}
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
export class PaymentMethodGroupGetResponse extends jspb.Message {
|
|
1850
|
+
getResponsecode(): ResponseCode | undefined;
|
|
1851
|
+
setResponsecode(value?: ResponseCode): PaymentMethodGroupGetResponse;
|
|
1852
|
+
hasResponsecode(): boolean;
|
|
1853
|
+
clearResponsecode(): PaymentMethodGroupGetResponse;
|
|
1854
|
+
|
|
1855
|
+
getGroup(): PaymentMethodGroup | undefined;
|
|
1856
|
+
setGroup(value?: PaymentMethodGroup): PaymentMethodGroupGetResponse;
|
|
1857
|
+
hasGroup(): boolean;
|
|
1858
|
+
clearGroup(): PaymentMethodGroupGetResponse;
|
|
1859
|
+
|
|
1860
|
+
serializeBinary(): Uint8Array;
|
|
1861
|
+
toObject(includeInstance?: boolean): PaymentMethodGroupGetResponse.AsObject;
|
|
1862
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodGroupGetResponse): PaymentMethodGroupGetResponse.AsObject;
|
|
1863
|
+
static serializeBinaryToWriter(message: PaymentMethodGroupGetResponse, writer: jspb.BinaryWriter): void;
|
|
1864
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodGroupGetResponse;
|
|
1865
|
+
static deserializeBinaryFromReader(message: PaymentMethodGroupGetResponse, reader: jspb.BinaryReader): PaymentMethodGroupGetResponse;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
export namespace PaymentMethodGroupGetResponse {
|
|
1869
|
+
export type AsObject = {
|
|
1870
|
+
responsecode?: ResponseCode.AsObject,
|
|
1871
|
+
group?: PaymentMethodGroup.AsObject,
|
|
1872
|
+
}
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
export class PaymentMethodGroupPatchRequest extends jspb.Message {
|
|
1876
|
+
getName(): string;
|
|
1877
|
+
setName(value: string): PaymentMethodGroupPatchRequest;
|
|
1878
|
+
|
|
1879
|
+
getPaymentmethodsList(): Array<number>;
|
|
1880
|
+
setPaymentmethodsList(value: Array<number>): PaymentMethodGroupPatchRequest;
|
|
1881
|
+
clearPaymentmethodsList(): PaymentMethodGroupPatchRequest;
|
|
1882
|
+
addPaymentmethods(value: number, index?: number): PaymentMethodGroupPatchRequest;
|
|
1883
|
+
|
|
1884
|
+
serializeBinary(): Uint8Array;
|
|
1885
|
+
toObject(includeInstance?: boolean): PaymentMethodGroupPatchRequest.AsObject;
|
|
1886
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodGroupPatchRequest): PaymentMethodGroupPatchRequest.AsObject;
|
|
1887
|
+
static serializeBinaryToWriter(message: PaymentMethodGroupPatchRequest, writer: jspb.BinaryWriter): void;
|
|
1888
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodGroupPatchRequest;
|
|
1889
|
+
static deserializeBinaryFromReader(message: PaymentMethodGroupPatchRequest, reader: jspb.BinaryReader): PaymentMethodGroupPatchRequest;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
export namespace PaymentMethodGroupPatchRequest {
|
|
1893
|
+
export type AsObject = {
|
|
1894
|
+
name: string,
|
|
1895
|
+
paymentmethodsList: Array<number>,
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
export class PaymentMethodGroupsResponse extends jspb.Message {
|
|
1900
|
+
getResponsecode(): ResponseCode | undefined;
|
|
1901
|
+
setResponsecode(value?: ResponseCode): PaymentMethodGroupsResponse;
|
|
1902
|
+
hasResponsecode(): boolean;
|
|
1903
|
+
clearResponsecode(): PaymentMethodGroupsResponse;
|
|
1904
|
+
|
|
1905
|
+
getGroupsList(): Array<PaymentMethodGroup>;
|
|
1906
|
+
setGroupsList(value: Array<PaymentMethodGroup>): PaymentMethodGroupsResponse;
|
|
1907
|
+
clearGroupsList(): PaymentMethodGroupsResponse;
|
|
1908
|
+
addGroups(value?: PaymentMethodGroup, index?: number): PaymentMethodGroup;
|
|
1909
|
+
|
|
1910
|
+
serializeBinary(): Uint8Array;
|
|
1911
|
+
toObject(includeInstance?: boolean): PaymentMethodGroupsResponse.AsObject;
|
|
1912
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodGroupsResponse): PaymentMethodGroupsResponse.AsObject;
|
|
1913
|
+
static serializeBinaryToWriter(message: PaymentMethodGroupsResponse, writer: jspb.BinaryWriter): void;
|
|
1914
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodGroupsResponse;
|
|
1915
|
+
static deserializeBinaryFromReader(message: PaymentMethodGroupsResponse, reader: jspb.BinaryReader): PaymentMethodGroupsResponse;
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
export namespace PaymentMethodGroupsResponse {
|
|
1919
|
+
export type AsObject = {
|
|
1920
|
+
responsecode?: ResponseCode.AsObject,
|
|
1921
|
+
groupsList: Array<PaymentMethodGroup.AsObject>,
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
export class PaymentMethodResponse extends jspb.Message {
|
|
1926
|
+
getPaymentmethod(): PaymentMethod | undefined;
|
|
1927
|
+
setPaymentmethod(value?: PaymentMethod): PaymentMethodResponse;
|
|
1928
|
+
hasPaymentmethod(): boolean;
|
|
1929
|
+
clearPaymentmethod(): PaymentMethodResponse;
|
|
1930
|
+
|
|
1931
|
+
getResponsecode(): ResponseCode | undefined;
|
|
1932
|
+
setResponsecode(value?: ResponseCode): PaymentMethodResponse;
|
|
1933
|
+
hasResponsecode(): boolean;
|
|
1934
|
+
clearResponsecode(): PaymentMethodResponse;
|
|
1935
|
+
|
|
1936
|
+
serializeBinary(): Uint8Array;
|
|
1937
|
+
toObject(includeInstance?: boolean): PaymentMethodResponse.AsObject;
|
|
1938
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodResponse): PaymentMethodResponse.AsObject;
|
|
1939
|
+
static serializeBinaryToWriter(message: PaymentMethodResponse, writer: jspb.BinaryWriter): void;
|
|
1940
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodResponse;
|
|
1941
|
+
static deserializeBinaryFromReader(message: PaymentMethodResponse, reader: jspb.BinaryReader): PaymentMethodResponse;
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
export namespace PaymentMethodResponse {
|
|
1945
|
+
export type AsObject = {
|
|
1946
|
+
paymentmethod?: PaymentMethod.AsObject,
|
|
1947
|
+
responsecode?: ResponseCode.AsObject,
|
|
1948
|
+
}
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
export class PaymentMethodType extends jspb.Message {
|
|
1952
|
+
getPaymentmethodtypeid(): number;
|
|
1953
|
+
setPaymentmethodtypeid(value: number): PaymentMethodType;
|
|
1954
|
+
|
|
1955
|
+
getPaymenttype(): string;
|
|
1956
|
+
setPaymenttype(value: string): PaymentMethodType;
|
|
1957
|
+
|
|
1958
|
+
getAllowdebit(): boolean;
|
|
1959
|
+
setAllowdebit(value: boolean): PaymentMethodType;
|
|
1960
|
+
|
|
1961
|
+
getAllowcredit(): boolean;
|
|
1962
|
+
setAllowcredit(value: boolean): PaymentMethodType;
|
|
1963
|
+
|
|
1964
|
+
getEftposonly(): boolean;
|
|
1965
|
+
setEftposonly(value: boolean): PaymentMethodType;
|
|
1966
|
+
|
|
1967
|
+
getAllowinternational(): boolean;
|
|
1968
|
+
setAllowinternational(value: boolean): PaymentMethodType;
|
|
1969
|
+
|
|
1970
|
+
getDisplayname(): string;
|
|
1971
|
+
setDisplayname(value: string): PaymentMethodType;
|
|
1972
|
+
|
|
1973
|
+
getAllowprepaid(): boolean;
|
|
1974
|
+
setAllowprepaid(value: boolean): PaymentMethodType;
|
|
1975
|
+
|
|
1976
|
+
getAllowcryptocom(): boolean;
|
|
1977
|
+
setAllowcryptocom(value: boolean): PaymentMethodType;
|
|
1978
|
+
|
|
1979
|
+
serializeBinary(): Uint8Array;
|
|
1980
|
+
toObject(includeInstance?: boolean): PaymentMethodType.AsObject;
|
|
1981
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodType): PaymentMethodType.AsObject;
|
|
1982
|
+
static serializeBinaryToWriter(message: PaymentMethodType, writer: jspb.BinaryWriter): void;
|
|
1983
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodType;
|
|
1984
|
+
static deserializeBinaryFromReader(message: PaymentMethodType, reader: jspb.BinaryReader): PaymentMethodType;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
export namespace PaymentMethodType {
|
|
1988
|
+
export type AsObject = {
|
|
1989
|
+
paymentmethodtypeid: number,
|
|
1990
|
+
paymenttype: string,
|
|
1991
|
+
allowdebit: boolean,
|
|
1992
|
+
allowcredit: boolean,
|
|
1993
|
+
eftposonly: boolean,
|
|
1994
|
+
allowinternational: boolean,
|
|
1995
|
+
displayname: string,
|
|
1996
|
+
allowprepaid: boolean,
|
|
1997
|
+
allowcryptocom: boolean,
|
|
1998
|
+
}
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
export class PaymentMethodTypesResponse extends jspb.Message {
|
|
2002
|
+
getResponsecode(): ResponseCode | undefined;
|
|
2003
|
+
setResponsecode(value?: ResponseCode): PaymentMethodTypesResponse;
|
|
2004
|
+
hasResponsecode(): boolean;
|
|
2005
|
+
clearResponsecode(): PaymentMethodTypesResponse;
|
|
2006
|
+
|
|
2007
|
+
getTypesList(): Array<PaymentMethodType>;
|
|
2008
|
+
setTypesList(value: Array<PaymentMethodType>): PaymentMethodTypesResponse;
|
|
2009
|
+
clearTypesList(): PaymentMethodTypesResponse;
|
|
2010
|
+
addTypes(value?: PaymentMethodType, index?: number): PaymentMethodType;
|
|
2011
|
+
|
|
2012
|
+
serializeBinary(): Uint8Array;
|
|
2013
|
+
toObject(includeInstance?: boolean): PaymentMethodTypesResponse.AsObject;
|
|
2014
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodTypesResponse): PaymentMethodTypesResponse.AsObject;
|
|
2015
|
+
static serializeBinaryToWriter(message: PaymentMethodTypesResponse, writer: jspb.BinaryWriter): void;
|
|
2016
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodTypesResponse;
|
|
2017
|
+
static deserializeBinaryFromReader(message: PaymentMethodTypesResponse, reader: jspb.BinaryReader): PaymentMethodTypesResponse;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
export namespace PaymentMethodTypesResponse {
|
|
2021
|
+
export type AsObject = {
|
|
2022
|
+
responsecode?: ResponseCode.AsObject,
|
|
2023
|
+
typesList: Array<PaymentMethodType.AsObject>,
|
|
2024
|
+
}
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
export class PaymentMethodUpdateRequest extends jspb.Message {
|
|
2028
|
+
getPaymentmethodid(): number;
|
|
2029
|
+
setPaymentmethodid(value: number): PaymentMethodUpdateRequest;
|
|
2030
|
+
|
|
2031
|
+
getPaymenttype(): string;
|
|
2032
|
+
setPaymenttype(value: string): PaymentMethodUpdateRequest;
|
|
2033
|
+
|
|
2034
|
+
getCreditcard(): UpdateCreditCard | undefined;
|
|
2035
|
+
setCreditcard(value?: UpdateCreditCard): PaymentMethodUpdateRequest;
|
|
2036
|
+
hasCreditcard(): boolean;
|
|
2037
|
+
clearCreditcard(): PaymentMethodUpdateRequest;
|
|
2038
|
+
|
|
2039
|
+
getBankaccount(): UpdateBankAccount | undefined;
|
|
2040
|
+
setBankaccount(value?: UpdateBankAccount): PaymentMethodUpdateRequest;
|
|
2041
|
+
hasBankaccount(): boolean;
|
|
2042
|
+
clearBankaccount(): PaymentMethodUpdateRequest;
|
|
2043
|
+
|
|
2044
|
+
getAccesstoken(): string;
|
|
2045
|
+
setAccesstoken(value: string): PaymentMethodUpdateRequest;
|
|
2046
|
+
|
|
2047
|
+
serializeBinary(): Uint8Array;
|
|
2048
|
+
toObject(includeInstance?: boolean): PaymentMethodUpdateRequest.AsObject;
|
|
2049
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodUpdateRequest): PaymentMethodUpdateRequest.AsObject;
|
|
2050
|
+
static serializeBinaryToWriter(message: PaymentMethodUpdateRequest, writer: jspb.BinaryWriter): void;
|
|
2051
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodUpdateRequest;
|
|
2052
|
+
static deserializeBinaryFromReader(message: PaymentMethodUpdateRequest, reader: jspb.BinaryReader): PaymentMethodUpdateRequest;
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
export namespace PaymentMethodUpdateRequest {
|
|
2056
|
+
export type AsObject = {
|
|
2057
|
+
paymentmethodid: number,
|
|
2058
|
+
paymenttype: string,
|
|
2059
|
+
creditcard?: UpdateCreditCard.AsObject,
|
|
2060
|
+
bankaccount?: UpdateBankAccount.AsObject,
|
|
2061
|
+
accesstoken: string,
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
export class PaymentMethodsByPaymentMethodIdRequest extends jspb.Message {
|
|
2066
|
+
getAccesstoken(): string;
|
|
2067
|
+
setAccesstoken(value: string): PaymentMethodsByPaymentMethodIdRequest;
|
|
2068
|
+
|
|
2069
|
+
getUserid(): number;
|
|
2070
|
+
setUserid(value: number): PaymentMethodsByPaymentMethodIdRequest;
|
|
2071
|
+
|
|
2072
|
+
getPaymentmethodidlistList(): Array<number>;
|
|
2073
|
+
setPaymentmethodidlistList(value: Array<number>): PaymentMethodsByPaymentMethodIdRequest;
|
|
2074
|
+
clearPaymentmethodidlistList(): PaymentMethodsByPaymentMethodIdRequest;
|
|
2075
|
+
addPaymentmethodidlist(value: number, index?: number): PaymentMethodsByPaymentMethodIdRequest;
|
|
2076
|
+
|
|
2077
|
+
serializeBinary(): Uint8Array;
|
|
2078
|
+
toObject(includeInstance?: boolean): PaymentMethodsByPaymentMethodIdRequest.AsObject;
|
|
2079
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodsByPaymentMethodIdRequest): PaymentMethodsByPaymentMethodIdRequest.AsObject;
|
|
2080
|
+
static serializeBinaryToWriter(message: PaymentMethodsByPaymentMethodIdRequest, writer: jspb.BinaryWriter): void;
|
|
2081
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodsByPaymentMethodIdRequest;
|
|
2082
|
+
static deserializeBinaryFromReader(message: PaymentMethodsByPaymentMethodIdRequest, reader: jspb.BinaryReader): PaymentMethodsByPaymentMethodIdRequest;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
export namespace PaymentMethodsByPaymentMethodIdRequest {
|
|
2086
|
+
export type AsObject = {
|
|
2087
|
+
accesstoken: string,
|
|
2088
|
+
userid: number,
|
|
2089
|
+
paymentmethodidlistList: Array<number>,
|
|
2090
|
+
}
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
export class PaymentMethodsDigitalRequest extends jspb.Message {
|
|
2094
|
+
getIsapplepay(): boolean;
|
|
2095
|
+
setIsapplepay(value: boolean): PaymentMethodsDigitalRequest;
|
|
2096
|
+
|
|
2097
|
+
getIsgooglepay(): boolean;
|
|
2098
|
+
setIsgooglepay(value: boolean): PaymentMethodsDigitalRequest;
|
|
2099
|
+
|
|
2100
|
+
getCardvariant(): string;
|
|
2101
|
+
setCardvariant(value: string): PaymentMethodsDigitalRequest;
|
|
2102
|
+
|
|
2103
|
+
getPaymentmethodtype(): string;
|
|
2104
|
+
setPaymentmethodtype(value: string): PaymentMethodsDigitalRequest;
|
|
2105
|
+
|
|
2106
|
+
serializeBinary(): Uint8Array;
|
|
2107
|
+
toObject(includeInstance?: boolean): PaymentMethodsDigitalRequest.AsObject;
|
|
2108
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodsDigitalRequest): PaymentMethodsDigitalRequest.AsObject;
|
|
2109
|
+
static serializeBinaryToWriter(message: PaymentMethodsDigitalRequest, writer: jspb.BinaryWriter): void;
|
|
2110
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodsDigitalRequest;
|
|
2111
|
+
static deserializeBinaryFromReader(message: PaymentMethodsDigitalRequest, reader: jspb.BinaryReader): PaymentMethodsDigitalRequest;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
export namespace PaymentMethodsDigitalRequest {
|
|
2115
|
+
export type AsObject = {
|
|
2116
|
+
isapplepay: boolean,
|
|
2117
|
+
isgooglepay: boolean,
|
|
2118
|
+
cardvariant: string,
|
|
2119
|
+
paymentmethodtype: string,
|
|
2120
|
+
}
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
export class PaymentMethodsForAuditRequest extends jspb.Message {
|
|
2124
|
+
getUserid(): number;
|
|
2125
|
+
setUserid(value: number): PaymentMethodsForAuditRequest;
|
|
2126
|
+
|
|
2127
|
+
getExcludedeleted(): boolean;
|
|
2128
|
+
setExcludedeleted(value: boolean): PaymentMethodsForAuditRequest;
|
|
2129
|
+
|
|
2130
|
+
getExcludeapplepay(): boolean;
|
|
2131
|
+
setExcludeapplepay(value: boolean): PaymentMethodsForAuditRequest;
|
|
2132
|
+
|
|
2133
|
+
getExcludegooglepay(): boolean;
|
|
2134
|
+
setExcludegooglepay(value: boolean): PaymentMethodsForAuditRequest;
|
|
2135
|
+
|
|
2136
|
+
serializeBinary(): Uint8Array;
|
|
2137
|
+
toObject(includeInstance?: boolean): PaymentMethodsForAuditRequest.AsObject;
|
|
2138
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodsForAuditRequest): PaymentMethodsForAuditRequest.AsObject;
|
|
2139
|
+
static serializeBinaryToWriter(message: PaymentMethodsForAuditRequest, writer: jspb.BinaryWriter): void;
|
|
2140
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodsForAuditRequest;
|
|
2141
|
+
static deserializeBinaryFromReader(message: PaymentMethodsForAuditRequest, reader: jspb.BinaryReader): PaymentMethodsForAuditRequest;
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
export namespace PaymentMethodsForAuditRequest {
|
|
2145
|
+
export type AsObject = {
|
|
2146
|
+
userid: number,
|
|
2147
|
+
excludedeleted: boolean,
|
|
2148
|
+
excludeapplepay: boolean,
|
|
2149
|
+
excludegooglepay: boolean,
|
|
2150
|
+
}
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
export class PaymentMethodsInternalGetRequest extends jspb.Message {
|
|
2154
|
+
getUserid(): number;
|
|
2155
|
+
setUserid(value: number): PaymentMethodsInternalGetRequest;
|
|
2156
|
+
|
|
2157
|
+
serializeBinary(): Uint8Array;
|
|
2158
|
+
toObject(includeInstance?: boolean): PaymentMethodsInternalGetRequest.AsObject;
|
|
2159
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodsInternalGetRequest): PaymentMethodsInternalGetRequest.AsObject;
|
|
2160
|
+
static serializeBinaryToWriter(message: PaymentMethodsInternalGetRequest, writer: jspb.BinaryWriter): void;
|
|
2161
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodsInternalGetRequest;
|
|
2162
|
+
static deserializeBinaryFromReader(message: PaymentMethodsInternalGetRequest, reader: jspb.BinaryReader): PaymentMethodsInternalGetRequest;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
export namespace PaymentMethodsInternalGetRequest {
|
|
2166
|
+
export type AsObject = {
|
|
2167
|
+
userid: number,
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
export class PaymentMethodsResponse extends jspb.Message {
|
|
2172
|
+
getPaymentmethodList(): Array<PaymentMethod>;
|
|
2173
|
+
setPaymentmethodList(value: Array<PaymentMethod>): PaymentMethodsResponse;
|
|
2174
|
+
clearPaymentmethodList(): PaymentMethodsResponse;
|
|
2175
|
+
addPaymentmethod(value?: PaymentMethod, index?: number): PaymentMethod;
|
|
2176
|
+
|
|
2177
|
+
getResponsecode(): ResponseCode | undefined;
|
|
2178
|
+
setResponsecode(value?: ResponseCode): PaymentMethodsResponse;
|
|
2179
|
+
hasResponsecode(): boolean;
|
|
2180
|
+
clearResponsecode(): PaymentMethodsResponse;
|
|
2181
|
+
|
|
2182
|
+
getColourschemesList(): Array<ColourScheme>;
|
|
2183
|
+
setColourschemesList(value: Array<ColourScheme>): PaymentMethodsResponse;
|
|
2184
|
+
clearColourschemesList(): PaymentMethodsResponse;
|
|
2185
|
+
addColourschemes(value?: ColourScheme, index?: number): ColourScheme;
|
|
2186
|
+
|
|
2187
|
+
serializeBinary(): Uint8Array;
|
|
2188
|
+
toObject(includeInstance?: boolean): PaymentMethodsResponse.AsObject;
|
|
2189
|
+
static toObject(includeInstance: boolean, msg: PaymentMethodsResponse): PaymentMethodsResponse.AsObject;
|
|
2190
|
+
static serializeBinaryToWriter(message: PaymentMethodsResponse, writer: jspb.BinaryWriter): void;
|
|
2191
|
+
static deserializeBinary(bytes: Uint8Array): PaymentMethodsResponse;
|
|
2192
|
+
static deserializeBinaryFromReader(message: PaymentMethodsResponse, reader: jspb.BinaryReader): PaymentMethodsResponse;
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
export namespace PaymentMethodsResponse {
|
|
2196
|
+
export type AsObject = {
|
|
2197
|
+
paymentmethodList: Array<PaymentMethod.AsObject>,
|
|
2198
|
+
responsecode?: ResponseCode.AsObject,
|
|
2199
|
+
colourschemesList: Array<ColourScheme.AsObject>,
|
|
2200
|
+
}
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
export class RemovePaymentMethodRequest extends jspb.Message {
|
|
2204
|
+
getData(): PaymentMethodDeleteRequest | undefined;
|
|
2205
|
+
setData(value?: PaymentMethodDeleteRequest): RemovePaymentMethodRequest;
|
|
2206
|
+
hasData(): boolean;
|
|
2207
|
+
clearData(): RemovePaymentMethodRequest;
|
|
2208
|
+
|
|
2209
|
+
serializeBinary(): Uint8Array;
|
|
2210
|
+
toObject(includeInstance?: boolean): RemovePaymentMethodRequest.AsObject;
|
|
2211
|
+
static toObject(includeInstance: boolean, msg: RemovePaymentMethodRequest): RemovePaymentMethodRequest.AsObject;
|
|
2212
|
+
static serializeBinaryToWriter(message: RemovePaymentMethodRequest, writer: jspb.BinaryWriter): void;
|
|
2213
|
+
static deserializeBinary(bytes: Uint8Array): RemovePaymentMethodRequest;
|
|
2214
|
+
static deserializeBinaryFromReader(message: RemovePaymentMethodRequest, reader: jspb.BinaryReader): RemovePaymentMethodRequest;
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2217
|
+
export namespace RemovePaymentMethodRequest {
|
|
2218
|
+
export type AsObject = {
|
|
2219
|
+
data?: PaymentMethodDeleteRequest.AsObject,
|
|
2220
|
+
}
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
export class ResponseCode extends jspb.Message {
|
|
2224
|
+
getCode(): number;
|
|
2225
|
+
setCode(value: number): ResponseCode;
|
|
2226
|
+
|
|
2227
|
+
getMessage(): string;
|
|
2228
|
+
setMessage(value: string): ResponseCode;
|
|
2229
|
+
|
|
2230
|
+
serializeBinary(): Uint8Array;
|
|
2231
|
+
toObject(includeInstance?: boolean): ResponseCode.AsObject;
|
|
2232
|
+
static toObject(includeInstance: boolean, msg: ResponseCode): ResponseCode.AsObject;
|
|
2233
|
+
static serializeBinaryToWriter(message: ResponseCode, writer: jspb.BinaryWriter): void;
|
|
2234
|
+
static deserializeBinary(bytes: Uint8Array): ResponseCode;
|
|
2235
|
+
static deserializeBinaryFromReader(message: ResponseCode, reader: jspb.BinaryReader): ResponseCode;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
export namespace ResponseCode {
|
|
2239
|
+
export type AsObject = {
|
|
2240
|
+
code: number,
|
|
2241
|
+
message: string,
|
|
2242
|
+
}
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
export class SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest extends jspb.Message {
|
|
2246
|
+
getData(): PaymentMethodExpiringForScheduledPaymentsNotificationRequest | undefined;
|
|
2247
|
+
setData(value?: PaymentMethodExpiringForScheduledPaymentsNotificationRequest): SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
2248
|
+
hasData(): boolean;
|
|
2249
|
+
clearData(): SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
2250
|
+
|
|
2251
|
+
serializeBinary(): Uint8Array;
|
|
2252
|
+
toObject(includeInstance?: boolean): SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest.AsObject;
|
|
2253
|
+
static toObject(includeInstance: boolean, msg: SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest): SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest.AsObject;
|
|
2254
|
+
static serializeBinaryToWriter(message: SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest, writer: jspb.BinaryWriter): void;
|
|
2255
|
+
static deserializeBinary(bytes: Uint8Array): SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
2256
|
+
static deserializeBinaryFromReader(message: SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest, reader: jspb.BinaryReader): SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
export namespace SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest {
|
|
2260
|
+
export type AsObject = {
|
|
2261
|
+
data?: PaymentMethodExpiringForScheduledPaymentsNotificationRequest.AsObject,
|
|
2262
|
+
}
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
export class UpdateBankAccount extends jspb.Message {
|
|
2266
|
+
getNickname(): string;
|
|
2267
|
+
setNickname(value: string): UpdateBankAccount;
|
|
2268
|
+
|
|
2269
|
+
getColourscheme(): number;
|
|
2270
|
+
setColourscheme(value: number): UpdateBankAccount;
|
|
2271
|
+
|
|
2272
|
+
serializeBinary(): Uint8Array;
|
|
2273
|
+
toObject(includeInstance?: boolean): UpdateBankAccount.AsObject;
|
|
2274
|
+
static toObject(includeInstance: boolean, msg: UpdateBankAccount): UpdateBankAccount.AsObject;
|
|
2275
|
+
static serializeBinaryToWriter(message: UpdateBankAccount, writer: jspb.BinaryWriter): void;
|
|
2276
|
+
static deserializeBinary(bytes: Uint8Array): UpdateBankAccount;
|
|
2277
|
+
static deserializeBinaryFromReader(message: UpdateBankAccount, reader: jspb.BinaryReader): UpdateBankAccount;
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
export namespace UpdateBankAccount {
|
|
2281
|
+
export type AsObject = {
|
|
2282
|
+
nickname: string,
|
|
2283
|
+
colourscheme: number,
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
export class UpdateCreditCard extends jspb.Message {
|
|
2288
|
+
getNameoncard(): string;
|
|
2289
|
+
setNameoncard(value: string): UpdateCreditCard;
|
|
2290
|
+
|
|
2291
|
+
getMonthexpiry(): number;
|
|
2292
|
+
setMonthexpiry(value: number): UpdateCreditCard;
|
|
2293
|
+
|
|
2294
|
+
getYearexpiry(): number;
|
|
2295
|
+
setYearexpiry(value: number): UpdateCreditCard;
|
|
2296
|
+
|
|
2297
|
+
getNickname(): string;
|
|
2298
|
+
setNickname(value: string): UpdateCreditCard;
|
|
2299
|
+
|
|
2300
|
+
getColourscheme(): number;
|
|
2301
|
+
setColourscheme(value: number): UpdateCreditCard;
|
|
2302
|
+
|
|
2303
|
+
getCvv(): string;
|
|
2304
|
+
setCvv(value: string): UpdateCreditCard;
|
|
2305
|
+
|
|
2306
|
+
serializeBinary(): Uint8Array;
|
|
2307
|
+
toObject(includeInstance?: boolean): UpdateCreditCard.AsObject;
|
|
2308
|
+
static toObject(includeInstance: boolean, msg: UpdateCreditCard): UpdateCreditCard.AsObject;
|
|
2309
|
+
static serializeBinaryToWriter(message: UpdateCreditCard, writer: jspb.BinaryWriter): void;
|
|
2310
|
+
static deserializeBinary(bytes: Uint8Array): UpdateCreditCard;
|
|
2311
|
+
static deserializeBinaryFromReader(message: UpdateCreditCard, reader: jspb.BinaryReader): UpdateCreditCard;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
export namespace UpdateCreditCard {
|
|
2315
|
+
export type AsObject = {
|
|
2316
|
+
nameoncard: string,
|
|
2317
|
+
monthexpiry: number,
|
|
2318
|
+
yearexpiry: number,
|
|
2319
|
+
nickname: string,
|
|
2320
|
+
colourscheme: number,
|
|
2321
|
+
cvv: string,
|
|
2322
|
+
}
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
export class UpdateMasterBinLookupOverrideRequest extends jspb.Message {
|
|
2326
|
+
getData(): MasterBinLookupOverrideUpdateRequest | undefined;
|
|
2327
|
+
setData(value?: MasterBinLookupOverrideUpdateRequest): UpdateMasterBinLookupOverrideRequest;
|
|
2328
|
+
hasData(): boolean;
|
|
2329
|
+
clearData(): UpdateMasterBinLookupOverrideRequest;
|
|
2330
|
+
|
|
2331
|
+
serializeBinary(): Uint8Array;
|
|
2332
|
+
toObject(includeInstance?: boolean): UpdateMasterBinLookupOverrideRequest.AsObject;
|
|
2333
|
+
static toObject(includeInstance: boolean, msg: UpdateMasterBinLookupOverrideRequest): UpdateMasterBinLookupOverrideRequest.AsObject;
|
|
2334
|
+
static serializeBinaryToWriter(message: UpdateMasterBinLookupOverrideRequest, writer: jspb.BinaryWriter): void;
|
|
2335
|
+
static deserializeBinary(bytes: Uint8Array): UpdateMasterBinLookupOverrideRequest;
|
|
2336
|
+
static deserializeBinaryFromReader(message: UpdateMasterBinLookupOverrideRequest, reader: jspb.BinaryReader): UpdateMasterBinLookupOverrideRequest;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
export namespace UpdateMasterBinLookupOverrideRequest {
|
|
2340
|
+
export type AsObject = {
|
|
2341
|
+
data?: MasterBinLookupOverrideUpdateRequest.AsObject,
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
export class UpdatePaymentMethodGroupRequest extends jspb.Message {
|
|
2346
|
+
getData(): PaymentMethodGroupPatchRequest | undefined;
|
|
2347
|
+
setData(value?: PaymentMethodGroupPatchRequest): UpdatePaymentMethodGroupRequest;
|
|
2348
|
+
hasData(): boolean;
|
|
2349
|
+
clearData(): UpdatePaymentMethodGroupRequest;
|
|
2350
|
+
|
|
2351
|
+
getGroupid(): number;
|
|
2352
|
+
setGroupid(value: number): UpdatePaymentMethodGroupRequest;
|
|
2353
|
+
|
|
2354
|
+
serializeBinary(): Uint8Array;
|
|
2355
|
+
toObject(includeInstance?: boolean): UpdatePaymentMethodGroupRequest.AsObject;
|
|
2356
|
+
static toObject(includeInstance: boolean, msg: UpdatePaymentMethodGroupRequest): UpdatePaymentMethodGroupRequest.AsObject;
|
|
2357
|
+
static serializeBinaryToWriter(message: UpdatePaymentMethodGroupRequest, writer: jspb.BinaryWriter): void;
|
|
2358
|
+
static deserializeBinary(bytes: Uint8Array): UpdatePaymentMethodGroupRequest;
|
|
2359
|
+
static deserializeBinaryFromReader(message: UpdatePaymentMethodGroupRequest, reader: jspb.BinaryReader): UpdatePaymentMethodGroupRequest;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
export namespace UpdatePaymentMethodGroupRequest {
|
|
2363
|
+
export type AsObject = {
|
|
2364
|
+
data?: PaymentMethodGroupPatchRequest.AsObject,
|
|
2365
|
+
groupid: number,
|
|
2366
|
+
}
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2369
|
+
export class UpdatePaymentMethodRequest extends jspb.Message {
|
|
2370
|
+
getData(): PaymentMethodUpdateRequest | undefined;
|
|
2371
|
+
setData(value?: PaymentMethodUpdateRequest): UpdatePaymentMethodRequest;
|
|
2372
|
+
hasData(): boolean;
|
|
2373
|
+
clearData(): UpdatePaymentMethodRequest;
|
|
2374
|
+
|
|
2375
|
+
serializeBinary(): Uint8Array;
|
|
2376
|
+
toObject(includeInstance?: boolean): UpdatePaymentMethodRequest.AsObject;
|
|
2377
|
+
static toObject(includeInstance: boolean, msg: UpdatePaymentMethodRequest): UpdatePaymentMethodRequest.AsObject;
|
|
2378
|
+
static serializeBinaryToWriter(message: UpdatePaymentMethodRequest, writer: jspb.BinaryWriter): void;
|
|
2379
|
+
static deserializeBinary(bytes: Uint8Array): UpdatePaymentMethodRequest;
|
|
2380
|
+
static deserializeBinaryFromReader(message: UpdatePaymentMethodRequest, reader: jspb.BinaryReader): UpdatePaymentMethodRequest;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
export namespace UpdatePaymentMethodRequest {
|
|
2384
|
+
export type AsObject = {
|
|
2385
|
+
data?: PaymentMethodUpdateRequest.AsObject,
|
|
2386
|
+
}
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
export class ValidateApplePayRequest extends jspb.Message {
|
|
2390
|
+
getIsapplepaycard(): boolean;
|
|
2391
|
+
setIsapplepaycard(value: boolean): ValidateApplePayRequest;
|
|
2392
|
+
|
|
2393
|
+
getPaymenttype(): string;
|
|
2394
|
+
setPaymenttype(value: string): ValidateApplePayRequest;
|
|
2395
|
+
|
|
2396
|
+
getCardvariant(): string;
|
|
2397
|
+
setCardvariant(value: string): ValidateApplePayRequest;
|
|
2398
|
+
|
|
2399
|
+
serializeBinary(): Uint8Array;
|
|
2400
|
+
toObject(includeInstance?: boolean): ValidateApplePayRequest.AsObject;
|
|
2401
|
+
static toObject(includeInstance: boolean, msg: ValidateApplePayRequest): ValidateApplePayRequest.AsObject;
|
|
2402
|
+
static serializeBinaryToWriter(message: ValidateApplePayRequest, writer: jspb.BinaryWriter): void;
|
|
2403
|
+
static deserializeBinary(bytes: Uint8Array): ValidateApplePayRequest;
|
|
2404
|
+
static deserializeBinaryFromReader(message: ValidateApplePayRequest, reader: jspb.BinaryReader): ValidateApplePayRequest;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
export namespace ValidateApplePayRequest {
|
|
2408
|
+
export type AsObject = {
|
|
2409
|
+
isapplepaycard: boolean,
|
|
2410
|
+
paymenttype: string,
|
|
2411
|
+
cardvariant: string,
|
|
2412
|
+
}
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
export class ValidatePaymentMethodsRequest extends jspb.Message {
|
|
2416
|
+
getUserid(): number;
|
|
2417
|
+
setUserid(value: number): ValidatePaymentMethodsRequest;
|
|
2418
|
+
|
|
2419
|
+
getPaymentmethodidsList(): Array<number>;
|
|
2420
|
+
setPaymentmethodidsList(value: Array<number>): ValidatePaymentMethodsRequest;
|
|
2421
|
+
clearPaymentmethodidsList(): ValidatePaymentMethodsRequest;
|
|
2422
|
+
addPaymentmethodids(value: number, index?: number): ValidatePaymentMethodsRequest;
|
|
2423
|
+
|
|
2424
|
+
getPaymentmethodgroupidsList(): Array<number>;
|
|
2425
|
+
setPaymentmethodgroupidsList(value: Array<number>): ValidatePaymentMethodsRequest;
|
|
2426
|
+
clearPaymentmethodgroupidsList(): ValidatePaymentMethodsRequest;
|
|
2427
|
+
addPaymentmethodgroupids(value: number, index?: number): ValidatePaymentMethodsRequest;
|
|
2428
|
+
|
|
2429
|
+
getApplepaypaymentmethoddetails(): ValidateApplePayRequest | undefined;
|
|
2430
|
+
setApplepaypaymentmethoddetails(value?: ValidateApplePayRequest): ValidatePaymentMethodsRequest;
|
|
2431
|
+
hasApplepaypaymentmethoddetails(): boolean;
|
|
2432
|
+
clearApplepaypaymentmethoddetails(): ValidatePaymentMethodsRequest;
|
|
2433
|
+
|
|
2434
|
+
serializeBinary(): Uint8Array;
|
|
2435
|
+
toObject(includeInstance?: boolean): ValidatePaymentMethodsRequest.AsObject;
|
|
2436
|
+
static toObject(includeInstance: boolean, msg: ValidatePaymentMethodsRequest): ValidatePaymentMethodsRequest.AsObject;
|
|
2437
|
+
static serializeBinaryToWriter(message: ValidatePaymentMethodsRequest, writer: jspb.BinaryWriter): void;
|
|
2438
|
+
static deserializeBinary(bytes: Uint8Array): ValidatePaymentMethodsRequest;
|
|
2439
|
+
static deserializeBinaryFromReader(message: ValidatePaymentMethodsRequest, reader: jspb.BinaryReader): ValidatePaymentMethodsRequest;
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
export namespace ValidatePaymentMethodsRequest {
|
|
2443
|
+
export type AsObject = {
|
|
2444
|
+
userid: number,
|
|
2445
|
+
paymentmethodidsList: Array<number>,
|
|
2446
|
+
paymentmethodgroupidsList: Array<number>,
|
|
2447
|
+
applepaypaymentmethoddetails?: ValidateApplePayRequest.AsObject,
|
|
2448
|
+
}
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
export class ValidatePaymentMethodsResponse extends jspb.Message {
|
|
2452
|
+
getResponsecode(): ResponseCode | undefined;
|
|
2453
|
+
setResponsecode(value?: ResponseCode): ValidatePaymentMethodsResponse;
|
|
2454
|
+
hasResponsecode(): boolean;
|
|
2455
|
+
clearResponsecode(): ValidatePaymentMethodsResponse;
|
|
2456
|
+
|
|
2457
|
+
getPaymentmethodsList(): Array<ValidatedPaymentMethodsResponse>;
|
|
2458
|
+
setPaymentmethodsList(value: Array<ValidatedPaymentMethodsResponse>): ValidatePaymentMethodsResponse;
|
|
2459
|
+
clearPaymentmethodsList(): ValidatePaymentMethodsResponse;
|
|
2460
|
+
addPaymentmethods(value?: ValidatedPaymentMethodsResponse, index?: number): ValidatedPaymentMethodsResponse;
|
|
2461
|
+
|
|
2462
|
+
serializeBinary(): Uint8Array;
|
|
2463
|
+
toObject(includeInstance?: boolean): ValidatePaymentMethodsResponse.AsObject;
|
|
2464
|
+
static toObject(includeInstance: boolean, msg: ValidatePaymentMethodsResponse): ValidatePaymentMethodsResponse.AsObject;
|
|
2465
|
+
static serializeBinaryToWriter(message: ValidatePaymentMethodsResponse, writer: jspb.BinaryWriter): void;
|
|
2466
|
+
static deserializeBinary(bytes: Uint8Array): ValidatePaymentMethodsResponse;
|
|
2467
|
+
static deserializeBinaryFromReader(message: ValidatePaymentMethodsResponse, reader: jspb.BinaryReader): ValidatePaymentMethodsResponse;
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
export namespace ValidatePaymentMethodsResponse {
|
|
2471
|
+
export type AsObject = {
|
|
2472
|
+
responsecode?: ResponseCode.AsObject,
|
|
2473
|
+
paymentmethodsList: Array<ValidatedPaymentMethodsResponse.AsObject>,
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
export class ValidatedPaymentMethodsResponse extends jspb.Message {
|
|
2478
|
+
getPaymentmethodid(): number;
|
|
2479
|
+
setPaymentmethodid(value: number): ValidatedPaymentMethodsResponse;
|
|
2480
|
+
|
|
2481
|
+
getAccepted(): boolean;
|
|
2482
|
+
setAccepted(value: boolean): ValidatedPaymentMethodsResponse;
|
|
2483
|
+
|
|
2484
|
+
getExpired(): boolean;
|
|
2485
|
+
setExpired(value: boolean): ValidatedPaymentMethodsResponse;
|
|
2486
|
+
|
|
2487
|
+
serializeBinary(): Uint8Array;
|
|
2488
|
+
toObject(includeInstance?: boolean): ValidatedPaymentMethodsResponse.AsObject;
|
|
2489
|
+
static toObject(includeInstance: boolean, msg: ValidatedPaymentMethodsResponse): ValidatedPaymentMethodsResponse.AsObject;
|
|
2490
|
+
static serializeBinaryToWriter(message: ValidatedPaymentMethodsResponse, writer: jspb.BinaryWriter): void;
|
|
2491
|
+
static deserializeBinary(bytes: Uint8Array): ValidatedPaymentMethodsResponse;
|
|
2492
|
+
static deserializeBinaryFromReader(message: ValidatedPaymentMethodsResponse, reader: jspb.BinaryReader): ValidatedPaymentMethodsResponse;
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
export namespace ValidatedPaymentMethodsResponse {
|
|
2496
|
+
export type AsObject = {
|
|
2497
|
+
paymentmethodid: number,
|
|
2498
|
+
accepted: boolean,
|
|
2499
|
+
expired: boolean,
|
|
2500
|
+
}
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
export class VerifyBankAccountRequest extends jspb.Message {
|
|
2504
|
+
getData(): BankAccountVerifyRequest | undefined;
|
|
2505
|
+
setData(value?: BankAccountVerifyRequest): VerifyBankAccountRequest;
|
|
2506
|
+
hasData(): boolean;
|
|
2507
|
+
clearData(): VerifyBankAccountRequest;
|
|
2508
|
+
|
|
2509
|
+
serializeBinary(): Uint8Array;
|
|
2510
|
+
toObject(includeInstance?: boolean): VerifyBankAccountRequest.AsObject;
|
|
2511
|
+
static toObject(includeInstance: boolean, msg: VerifyBankAccountRequest): VerifyBankAccountRequest.AsObject;
|
|
2512
|
+
static serializeBinaryToWriter(message: VerifyBankAccountRequest, writer: jspb.BinaryWriter): void;
|
|
2513
|
+
static deserializeBinary(bytes: Uint8Array): VerifyBankAccountRequest;
|
|
2514
|
+
static deserializeBinaryFromReader(message: VerifyBankAccountRequest, reader: jspb.BinaryReader): VerifyBankAccountRequest;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
export namespace VerifyBankAccountRequest {
|
|
2518
|
+
export type AsObject = {
|
|
2519
|
+
data?: BankAccountVerifyRequest.AsObject,
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
export class VerifyCreditCardForUserRequest extends jspb.Message {
|
|
2524
|
+
getData(): CreditCardVerifyRequest | undefined;
|
|
2525
|
+
setData(value?: CreditCardVerifyRequest): VerifyCreditCardForUserRequest;
|
|
2526
|
+
hasData(): boolean;
|
|
2527
|
+
clearData(): VerifyCreditCardForUserRequest;
|
|
2528
|
+
|
|
2529
|
+
serializeBinary(): Uint8Array;
|
|
2530
|
+
toObject(includeInstance?: boolean): VerifyCreditCardForUserRequest.AsObject;
|
|
2531
|
+
static toObject(includeInstance: boolean, msg: VerifyCreditCardForUserRequest): VerifyCreditCardForUserRequest.AsObject;
|
|
2532
|
+
static serializeBinaryToWriter(message: VerifyCreditCardForUserRequest, writer: jspb.BinaryWriter): void;
|
|
2533
|
+
static deserializeBinary(bytes: Uint8Array): VerifyCreditCardForUserRequest;
|
|
2534
|
+
static deserializeBinaryFromReader(message: VerifyCreditCardForUserRequest, reader: jspb.BinaryReader): VerifyCreditCardForUserRequest;
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2537
|
+
export namespace VerifyCreditCardForUserRequest {
|
|
2538
|
+
export type AsObject = {
|
|
2539
|
+
data?: CreditCardVerifyRequest.AsObject,
|
|
2540
|
+
}
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
export class VerifyCreditCardRequest extends jspb.Message {
|
|
2544
|
+
getData(): CreditCardVerifyRequest | undefined;
|
|
2545
|
+
setData(value?: CreditCardVerifyRequest): VerifyCreditCardRequest;
|
|
2546
|
+
hasData(): boolean;
|
|
2547
|
+
clearData(): VerifyCreditCardRequest;
|
|
2548
|
+
|
|
2549
|
+
serializeBinary(): Uint8Array;
|
|
2550
|
+
toObject(includeInstance?: boolean): VerifyCreditCardRequest.AsObject;
|
|
2551
|
+
static toObject(includeInstance: boolean, msg: VerifyCreditCardRequest): VerifyCreditCardRequest.AsObject;
|
|
2552
|
+
static serializeBinaryToWriter(message: VerifyCreditCardRequest, writer: jspb.BinaryWriter): void;
|
|
2553
|
+
static deserializeBinary(bytes: Uint8Array): VerifyCreditCardRequest;
|
|
2554
|
+
static deserializeBinaryFromReader(message: VerifyCreditCardRequest, reader: jspb.BinaryReader): VerifyCreditCardRequest;
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
export namespace VerifyCreditCardRequest {
|
|
2558
|
+
export type AsObject = {
|
|
2559
|
+
data?: CreditCardVerifyRequest.AsObject,
|
|
2560
|
+
}
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
export class ZenithPaymentDetailsRequest extends jspb.Message {
|
|
2564
|
+
getUserid(): number;
|
|
2565
|
+
setUserid(value: number): ZenithPaymentDetailsRequest;
|
|
2566
|
+
|
|
2567
|
+
getPaymentmethodid(): number;
|
|
2568
|
+
setPaymentmethodid(value: number): ZenithPaymentDetailsRequest;
|
|
2569
|
+
|
|
2570
|
+
getAccesstoken(): string;
|
|
2571
|
+
setAccesstoken(value: string): ZenithPaymentDetailsRequest;
|
|
2572
|
+
|
|
2573
|
+
getIspaymentaccesskey(): boolean;
|
|
2574
|
+
setIspaymentaccesskey(value: boolean): ZenithPaymentDetailsRequest;
|
|
2575
|
+
|
|
2576
|
+
getBillerid(): number;
|
|
2577
|
+
setBillerid(value: number): ZenithPaymentDetailsRequest;
|
|
2578
|
+
|
|
2579
|
+
serializeBinary(): Uint8Array;
|
|
2580
|
+
toObject(includeInstance?: boolean): ZenithPaymentDetailsRequest.AsObject;
|
|
2581
|
+
static toObject(includeInstance: boolean, msg: ZenithPaymentDetailsRequest): ZenithPaymentDetailsRequest.AsObject;
|
|
2582
|
+
static serializeBinaryToWriter(message: ZenithPaymentDetailsRequest, writer: jspb.BinaryWriter): void;
|
|
2583
|
+
static deserializeBinary(bytes: Uint8Array): ZenithPaymentDetailsRequest;
|
|
2584
|
+
static deserializeBinaryFromReader(message: ZenithPaymentDetailsRequest, reader: jspb.BinaryReader): ZenithPaymentDetailsRequest;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
export namespace ZenithPaymentDetailsRequest {
|
|
2588
|
+
export type AsObject = {
|
|
2589
|
+
userid: number,
|
|
2590
|
+
paymentmethodid: number,
|
|
2591
|
+
accesstoken: string,
|
|
2592
|
+
ispaymentaccesskey: boolean,
|
|
2593
|
+
billerid: number,
|
|
2594
|
+
}
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
export class ZenithPaymentDetailsResponse extends jspb.Message {
|
|
2598
|
+
getResponsecode(): ResponseCode | undefined;
|
|
2599
|
+
setResponsecode(value?: ResponseCode): ZenithPaymentDetailsResponse;
|
|
2600
|
+
hasResponsecode(): boolean;
|
|
2601
|
+
clearResponsecode(): ZenithPaymentDetailsResponse;
|
|
2602
|
+
|
|
2603
|
+
getZenithtoken(): string;
|
|
2604
|
+
setZenithtoken(value: string): ZenithPaymentDetailsResponse;
|
|
2605
|
+
|
|
2606
|
+
getCreditcard(): CreditCard | undefined;
|
|
2607
|
+
setCreditcard(value?: CreditCard): ZenithPaymentDetailsResponse;
|
|
2608
|
+
hasCreditcard(): boolean;
|
|
2609
|
+
clearCreditcard(): ZenithPaymentDetailsResponse;
|
|
2610
|
+
|
|
2611
|
+
serializeBinary(): Uint8Array;
|
|
2612
|
+
toObject(includeInstance?: boolean): ZenithPaymentDetailsResponse.AsObject;
|
|
2613
|
+
static toObject(includeInstance: boolean, msg: ZenithPaymentDetailsResponse): ZenithPaymentDetailsResponse.AsObject;
|
|
2614
|
+
static serializeBinaryToWriter(message: ZenithPaymentDetailsResponse, writer: jspb.BinaryWriter): void;
|
|
2615
|
+
static deserializeBinary(bytes: Uint8Array): ZenithPaymentDetailsResponse;
|
|
2616
|
+
static deserializeBinaryFromReader(message: ZenithPaymentDetailsResponse, reader: jspb.BinaryReader): ZenithPaymentDetailsResponse;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
export namespace ZenithPaymentDetailsResponse {
|
|
2620
|
+
export type AsObject = {
|
|
2621
|
+
responsecode?: ResponseCode.AsObject,
|
|
2622
|
+
zenithtoken: string,
|
|
2623
|
+
creditcard?: CreditCard.AsObject,
|
|
2624
|
+
}
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
export class ZenithTokenAddRequest extends jspb.Message {
|
|
2628
|
+
getUserid(): number;
|
|
2629
|
+
setUserid(value: number): ZenithTokenAddRequest;
|
|
2630
|
+
|
|
2631
|
+
getCreditcardid(): number;
|
|
2632
|
+
setCreditcardid(value: number): ZenithTokenAddRequest;
|
|
2633
|
+
|
|
2634
|
+
getZenithtoken(): string;
|
|
2635
|
+
setZenithtoken(value: string): ZenithTokenAddRequest;
|
|
2636
|
+
|
|
2637
|
+
getAccesstoken(): string;
|
|
2638
|
+
setAccesstoken(value: string): ZenithTokenAddRequest;
|
|
2639
|
+
|
|
2640
|
+
getIspaymentaccesskey(): boolean;
|
|
2641
|
+
setIspaymentaccesskey(value: boolean): ZenithTokenAddRequest;
|
|
2642
|
+
|
|
2643
|
+
getBillerid(): number;
|
|
2644
|
+
setBillerid(value: number): ZenithTokenAddRequest;
|
|
2645
|
+
|
|
2646
|
+
serializeBinary(): Uint8Array;
|
|
2647
|
+
toObject(includeInstance?: boolean): ZenithTokenAddRequest.AsObject;
|
|
2648
|
+
static toObject(includeInstance: boolean, msg: ZenithTokenAddRequest): ZenithTokenAddRequest.AsObject;
|
|
2649
|
+
static serializeBinaryToWriter(message: ZenithTokenAddRequest, writer: jspb.BinaryWriter): void;
|
|
2650
|
+
static deserializeBinary(bytes: Uint8Array): ZenithTokenAddRequest;
|
|
2651
|
+
static deserializeBinaryFromReader(message: ZenithTokenAddRequest, reader: jspb.BinaryReader): ZenithTokenAddRequest;
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
export namespace ZenithTokenAddRequest {
|
|
2655
|
+
export type AsObject = {
|
|
2656
|
+
userid: number,
|
|
2657
|
+
creditcardid: number,
|
|
2658
|
+
zenithtoken: string,
|
|
2659
|
+
accesstoken: string,
|
|
2660
|
+
ispaymentaccesskey: boolean,
|
|
2661
|
+
billerid: number,
|
|
2662
|
+
}
|
|
2663
|
+
}
|
|
2664
|
+
|
|
2665
|
+
export class ZenithTokenAddResponse extends jspb.Message {
|
|
2666
|
+
getResponsecode(): ResponseCode | undefined;
|
|
2667
|
+
setResponsecode(value?: ResponseCode): ZenithTokenAddResponse;
|
|
2668
|
+
hasResponsecode(): boolean;
|
|
2669
|
+
clearResponsecode(): ZenithTokenAddResponse;
|
|
2670
|
+
|
|
2671
|
+
getZenithtokenid(): number;
|
|
2672
|
+
setZenithtokenid(value: number): ZenithTokenAddResponse;
|
|
2673
|
+
|
|
2674
|
+
serializeBinary(): Uint8Array;
|
|
2675
|
+
toObject(includeInstance?: boolean): ZenithTokenAddResponse.AsObject;
|
|
2676
|
+
static toObject(includeInstance: boolean, msg: ZenithTokenAddResponse): ZenithTokenAddResponse.AsObject;
|
|
2677
|
+
static serializeBinaryToWriter(message: ZenithTokenAddResponse, writer: jspb.BinaryWriter): void;
|
|
2678
|
+
static deserializeBinary(bytes: Uint8Array): ZenithTokenAddResponse;
|
|
2679
|
+
static deserializeBinaryFromReader(message: ZenithTokenAddResponse, reader: jspb.BinaryReader): ZenithTokenAddResponse;
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2682
|
+
export namespace ZenithTokenAddResponse {
|
|
2683
|
+
export type AsObject = {
|
|
2684
|
+
responsecode?: ResponseCode.AsObject,
|
|
2685
|
+
zenithtokenid: number,
|
|
2686
|
+
}
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
export enum Gateway {
|
|
2690
|
+
STRIPE = 0,
|
|
2691
|
+
FAT_ZEBRA = 1,
|
|
2692
|
+
TILL = 2,
|
|
2693
|
+
}
|