@chotot/ct-logic-uni-rev-payment-v1 1.133.0
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/ad_service.proto +53 -0
- package/ad_service_pb.d.ts +248 -0
- package/ad_service_pb.js +99 -0
- package/cart.proto +122 -0
- package/cart_pb.d.ts +656 -0
- package/cart_pb.js +237 -0
- package/configuration.proto +147 -0
- package/configuration_pb.d.ts +716 -0
- package/configuration_pb.js +237 -0
- package/crepro_campaign.proto +277 -0
- package/crepro_campaign_pb.d.ts +1266 -0
- package/crepro_campaign_pb.js +436 -0
- package/crepro_code.proto +77 -0
- package/crepro_code_pb.d.ts +355 -0
- package/crepro_code_pb.js +130 -0
- package/crepro_log.proto +32 -0
- package/crepro_log_pb.d.ts +142 -0
- package/crepro_log_pb.js +51 -0
- package/crepro_redemption.proto +76 -0
- package/crepro_redemption_pb.d.ts +352 -0
- package/crepro_redemption_pb.js +119 -0
- package/dongtot.proto +758 -0
- package/dongtot_pb.d.ts +4169 -0
- package/dongtot_pb.js +1357 -0
- package/dongtot_service-LogicUniRevPaymentDongTotService_connectquery.d.ts +350 -0
- package/dongtot_service-LogicUniRevPaymentDongTotService_connectquery.js +551 -0
- package/dongtot_service.proto +154 -0
- package/dongtot_service_connect.d.ts +316 -0
- package/dongtot_service_connect.js +316 -0
- package/econtract.proto +675 -0
- package/econtract_pb.d.ts +3522 -0
- package/econtract_pb.js +1176 -0
- package/econtract_service-LogicUniRevPaymentEcontractService_connectquery.d.ts +419 -0
- package/econtract_service-LogicUniRevPaymentEcontractService_connectquery.js +673 -0
- package/econtract_service.proto +71 -0
- package/econtract_service_connect.d.ts +381 -0
- package/econtract_service_connect.js +381 -0
- package/fundiin.proto +53 -0
- package/fundiin_pb.d.ts +255 -0
- package/fundiin_pb.js +85 -0
- package/google_billing.proto +65 -0
- package/google_billing_pb.d.ts +372 -0
- package/google_billing_pb.js +146 -0
- package/iap.proto +53 -0
- package/iap_pb.d.ts +281 -0
- package/iap_pb.js +109 -0
- package/momo.proto +92 -0
- package/momo_pb.d.ts +481 -0
- package/momo_pb.js +150 -0
- package/napas.proto +110 -0
- package/napas_pb.d.ts +587 -0
- package/napas_pb.js +192 -0
- package/order.proto +81 -0
- package/order_pb.d.ts +372 -0
- package/order_pb.js +123 -0
- package/package.json +10 -0
- package/package.proto +382 -0
- package/package_pb.d.ts +1907 -0
- package/package_pb.js +621 -0
- package/payment_promotion.proto +170 -0
- package/payment_promotion_pb.d.ts +893 -0
- package/payment_promotion_pb.js +311 -0
- package/payment_promotion_service-LogicUniRevPaymentPromotionService_connectquery.d.ts +112 -0
- package/payment_promotion_service-LogicUniRevPaymentPromotionService_connectquery.js +171 -0
- package/payment_promotion_service.proto +73 -0
- package/payment_promotion_service_connect.d.ts +102 -0
- package/payment_promotion_service_connect.js +102 -0
- package/payoo.proto +55 -0
- package/payoo_pb.d.ts +282 -0
- package/payoo_pb.js +105 -0
- package/pricer.proto +154 -0
- package/pricer_pb.d.ts +823 -0
- package/pricer_pb.js +260 -0
- package/rabbit_mq.proto +51 -0
- package/rabbit_mq_pb.d.ts +257 -0
- package/rabbit_mq_pb.js +78 -0
- package/refund_order.proto +37 -0
- package/refund_order_pb.d.ts +184 -0
- package/refund_order_pb.js +63 -0
- package/scripts/modify_package_json.js +50 -0
- package/service-LogicUniRevPaymentService_connectquery.d.ts +1239 -0
- package/service-LogicUniRevPaymentService_connectquery.js +1968 -0
- package/service.proto +643 -0
- package/service_connect.d.ts +1120 -0
- package/service_connect.js +1120 -0
- package/subscription.proto +24 -0
- package/subscription_pb.d.ts +98 -0
- package/subscription_pb.js +37 -0
- package/template.proto +76 -0
- package/template_pb.d.ts +387 -0
- package/template_pb.js +140 -0
- package/transaction.proto +513 -0
- package/transaction_pb.d.ts +2717 -0
- package/transaction_pb.js +856 -0
- package/virtual_account.proto +265 -0
- package/virtual_account_pb.d.ts +1442 -0
- package/virtual_account_pb.js +478 -0
- package/zalopay.proto +78 -0
- package/zalopay_pb.d.ts +423 -0
- package/zalopay_pb.js +153 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// general
|
|
2
|
+
syntax = "proto3";
|
|
3
|
+
package ct_logic_uni_rev_payment.v1;
|
|
4
|
+
// language specs
|
|
5
|
+
option go_package = "github.com/carousell/ct-grpc-go/pkg/ct-logic-uni-rev-payment;pb";
|
|
6
|
+
|
|
7
|
+
// import third party protos
|
|
8
|
+
import "google/protobuf/timestamp.proto";
|
|
9
|
+
|
|
10
|
+
message GetCurrentSubscriptionServeInfoRequest {
|
|
11
|
+
int64 account_id = 1;
|
|
12
|
+
int64 category_id = 2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message GetCurrentSubscriptionServeInfoResponse {
|
|
16
|
+
string name = 1;
|
|
17
|
+
int64 aa_duration = 2;
|
|
18
|
+
int64 remain_free_ad = 3;
|
|
19
|
+
int64 total_free_ad = 4;
|
|
20
|
+
google.protobuf.Timestamp start_time = 5;
|
|
21
|
+
google.protobuf.Timestamp end_time = 6;
|
|
22
|
+
string key = 7;
|
|
23
|
+
repeated string add_on_features = 8;
|
|
24
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
// general
|
|
2
|
+
|
|
3
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
4
|
+
// @generated from file ct-logic-uni-rev-payment/v1/subscription.proto (package ct_logic_uni_rev_payment.v1, syntax proto3)
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// @ts-nocheck
|
|
7
|
+
|
|
8
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Timestamp } from "@bufbuild/protobuf";
|
|
9
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoRequest
|
|
13
|
+
*/
|
|
14
|
+
export declare class GetCurrentSubscriptionServeInfoRequest extends Message<GetCurrentSubscriptionServeInfoRequest> {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: int64 account_id = 1;
|
|
17
|
+
*/
|
|
18
|
+
accountId: bigint;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: int64 category_id = 2;
|
|
22
|
+
*/
|
|
23
|
+
categoryId: bigint;
|
|
24
|
+
|
|
25
|
+
constructor(data?: PartialMessage<GetCurrentSubscriptionServeInfoRequest>);
|
|
26
|
+
|
|
27
|
+
static readonly runtime: typeof proto3;
|
|
28
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoRequest";
|
|
29
|
+
static readonly fields: FieldList;
|
|
30
|
+
|
|
31
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCurrentSubscriptionServeInfoRequest;
|
|
32
|
+
|
|
33
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCurrentSubscriptionServeInfoRequest;
|
|
34
|
+
|
|
35
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCurrentSubscriptionServeInfoRequest;
|
|
36
|
+
|
|
37
|
+
static equals(a: GetCurrentSubscriptionServeInfoRequest | PlainMessage<GetCurrentSubscriptionServeInfoRequest> | undefined, b: GetCurrentSubscriptionServeInfoRequest | PlainMessage<GetCurrentSubscriptionServeInfoRequest> | undefined): boolean;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoResponse
|
|
42
|
+
*/
|
|
43
|
+
export declare class GetCurrentSubscriptionServeInfoResponse extends Message<GetCurrentSubscriptionServeInfoResponse> {
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: string name = 1;
|
|
46
|
+
*/
|
|
47
|
+
name: string;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: int64 aa_duration = 2;
|
|
51
|
+
*/
|
|
52
|
+
aaDuration: bigint;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @generated from field: int64 remain_free_ad = 3;
|
|
56
|
+
*/
|
|
57
|
+
remainFreeAd: bigint;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: int64 total_free_ad = 4;
|
|
61
|
+
*/
|
|
62
|
+
totalFreeAd: bigint;
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* @generated from field: google.protobuf.Timestamp start_time = 5;
|
|
66
|
+
*/
|
|
67
|
+
startTime?: Timestamp;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* @generated from field: google.protobuf.Timestamp end_time = 6;
|
|
71
|
+
*/
|
|
72
|
+
endTime?: Timestamp;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: string key = 7;
|
|
76
|
+
*/
|
|
77
|
+
key: string;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: repeated string add_on_features = 8;
|
|
81
|
+
*/
|
|
82
|
+
addOnFeatures: string[];
|
|
83
|
+
|
|
84
|
+
constructor(data?: PartialMessage<GetCurrentSubscriptionServeInfoResponse>);
|
|
85
|
+
|
|
86
|
+
static readonly runtime: typeof proto3;
|
|
87
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoResponse";
|
|
88
|
+
static readonly fields: FieldList;
|
|
89
|
+
|
|
90
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCurrentSubscriptionServeInfoResponse;
|
|
91
|
+
|
|
92
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCurrentSubscriptionServeInfoResponse;
|
|
93
|
+
|
|
94
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCurrentSubscriptionServeInfoResponse;
|
|
95
|
+
|
|
96
|
+
static equals(a: GetCurrentSubscriptionServeInfoResponse | PlainMessage<GetCurrentSubscriptionServeInfoResponse> | undefined, b: GetCurrentSubscriptionServeInfoResponse | PlainMessage<GetCurrentSubscriptionServeInfoResponse> | undefined): boolean;
|
|
97
|
+
}
|
|
98
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// general
|
|
2
|
+
|
|
3
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
4
|
+
// @generated from file ct-logic-uni-rev-payment/v1/subscription.proto (package ct_logic_uni_rev_payment.v1, syntax proto3)
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// @ts-nocheck
|
|
7
|
+
|
|
8
|
+
import { proto3, Timestamp } from "@bufbuild/protobuf";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoRequest
|
|
12
|
+
*/
|
|
13
|
+
export const GetCurrentSubscriptionServeInfoRequest = proto3.makeMessageType(
|
|
14
|
+
"ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoRequest",
|
|
15
|
+
() => [
|
|
16
|
+
{ no: 1, name: "account_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
17
|
+
{ no: 2, name: "category_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
18
|
+
],
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoResponse
|
|
23
|
+
*/
|
|
24
|
+
export const GetCurrentSubscriptionServeInfoResponse = proto3.makeMessageType(
|
|
25
|
+
"ct_logic_uni_rev_payment.v1.GetCurrentSubscriptionServeInfoResponse",
|
|
26
|
+
() => [
|
|
27
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
28
|
+
{ no: 2, name: "aa_duration", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
29
|
+
{ no: 3, name: "remain_free_ad", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
30
|
+
{ no: 4, name: "total_free_ad", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
31
|
+
{ no: 5, name: "start_time", kind: "message", T: Timestamp },
|
|
32
|
+
{ no: 6, name: "end_time", kind: "message", T: Timestamp },
|
|
33
|
+
{ no: 7, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
34
|
+
{ no: 8, name: "add_on_features", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
35
|
+
],
|
|
36
|
+
);
|
|
37
|
+
|
package/template.proto
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
package ct_logic_uni_rev_payment.v1;
|
|
3
|
+
// language specs
|
|
4
|
+
option go_package = "github.com/carousell/ct-grpc-go/pkg/ct-logic-uni-rev-payment;pb";
|
|
5
|
+
|
|
6
|
+
message TemplateContent {
|
|
7
|
+
string content = 1;
|
|
8
|
+
string icon_url = 2;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message BnplPaymentLimitTemplateRequest {
|
|
12
|
+
repeated int64 ad_ids = 1;
|
|
13
|
+
int64 package_id = 2;
|
|
14
|
+
int64 shop_package_id = 3;
|
|
15
|
+
string page = 4;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
message BnplPaymentLimitTemplateResponse {
|
|
19
|
+
string html = 1;
|
|
20
|
+
string modal_img_url = 2;
|
|
21
|
+
|
|
22
|
+
string title = 3;
|
|
23
|
+
repeated TemplateContent content_arr = 4;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
message BnplCallCenterTemplateRequest {
|
|
27
|
+
string title = 1;
|
|
28
|
+
string description = 2;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message BnplCallCenterTemplateResponse {
|
|
32
|
+
string html = 1;
|
|
33
|
+
|
|
34
|
+
string title = 2;
|
|
35
|
+
TemplateContent content = 3;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
message GoogleBillingServiceMessageTemplateRequest {
|
|
39
|
+
string title = 1;
|
|
40
|
+
string description = 2;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
message GoogleBillingServiceMessageTemplateResponse {
|
|
44
|
+
string html = 1;
|
|
45
|
+
|
|
46
|
+
string title = 2;
|
|
47
|
+
TemplateContent content = 3;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message GoogleBillingPaymentMessageTemplateRequest {
|
|
51
|
+
string title = 1;
|
|
52
|
+
string description = 2;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
message GoogleBillingPaymentMessageTemplateResponse {
|
|
56
|
+
string html = 1;
|
|
57
|
+
|
|
58
|
+
string title = 2;
|
|
59
|
+
TemplateContent content = 3;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
message GoogleBillingPaymentPageTemplateRequest {
|
|
63
|
+
string title = 1;
|
|
64
|
+
string description = 2;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
message GoogleBillingPaymentPageTemplateResponse {
|
|
68
|
+
string html = 1;
|
|
69
|
+
|
|
70
|
+
string title = 2;
|
|
71
|
+
string description = 3;
|
|
72
|
+
string footer = 4;
|
|
73
|
+
string button_text = 5;
|
|
74
|
+
string modal_img_url = 6;
|
|
75
|
+
repeated TemplateContent content_arr = 7;
|
|
76
|
+
}
|
package/template_pb.d.ts
ADDED
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
2
|
+
// @generated from file ct-logic-uni-rev-payment/v1/template.proto (package ct_logic_uni_rev_payment.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
7
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from message ct_logic_uni_rev_payment.v1.TemplateContent
|
|
11
|
+
*/
|
|
12
|
+
export declare class TemplateContent extends Message<TemplateContent> {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: string content = 1;
|
|
15
|
+
*/
|
|
16
|
+
content: string;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: string icon_url = 2;
|
|
20
|
+
*/
|
|
21
|
+
iconUrl: string;
|
|
22
|
+
|
|
23
|
+
constructor(data?: PartialMessage<TemplateContent>);
|
|
24
|
+
|
|
25
|
+
static readonly runtime: typeof proto3;
|
|
26
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.TemplateContent";
|
|
27
|
+
static readonly fields: FieldList;
|
|
28
|
+
|
|
29
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TemplateContent;
|
|
30
|
+
|
|
31
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TemplateContent;
|
|
32
|
+
|
|
33
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TemplateContent;
|
|
34
|
+
|
|
35
|
+
static equals(a: TemplateContent | PlainMessage<TemplateContent> | undefined, b: TemplateContent | PlainMessage<TemplateContent> | undefined): boolean;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from message ct_logic_uni_rev_payment.v1.BnplPaymentLimitTemplateRequest
|
|
40
|
+
*/
|
|
41
|
+
export declare class BnplPaymentLimitTemplateRequest extends Message<BnplPaymentLimitTemplateRequest> {
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: repeated int64 ad_ids = 1;
|
|
44
|
+
*/
|
|
45
|
+
adIds: bigint[];
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: int64 package_id = 2;
|
|
49
|
+
*/
|
|
50
|
+
packageId: bigint;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: int64 shop_package_id = 3;
|
|
54
|
+
*/
|
|
55
|
+
shopPackageId: bigint;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @generated from field: string page = 4;
|
|
59
|
+
*/
|
|
60
|
+
page: string;
|
|
61
|
+
|
|
62
|
+
constructor(data?: PartialMessage<BnplPaymentLimitTemplateRequest>);
|
|
63
|
+
|
|
64
|
+
static readonly runtime: typeof proto3;
|
|
65
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.BnplPaymentLimitTemplateRequest";
|
|
66
|
+
static readonly fields: FieldList;
|
|
67
|
+
|
|
68
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BnplPaymentLimitTemplateRequest;
|
|
69
|
+
|
|
70
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BnplPaymentLimitTemplateRequest;
|
|
71
|
+
|
|
72
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BnplPaymentLimitTemplateRequest;
|
|
73
|
+
|
|
74
|
+
static equals(a: BnplPaymentLimitTemplateRequest | PlainMessage<BnplPaymentLimitTemplateRequest> | undefined, b: BnplPaymentLimitTemplateRequest | PlainMessage<BnplPaymentLimitTemplateRequest> | undefined): boolean;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @generated from message ct_logic_uni_rev_payment.v1.BnplPaymentLimitTemplateResponse
|
|
79
|
+
*/
|
|
80
|
+
export declare class BnplPaymentLimitTemplateResponse extends Message<BnplPaymentLimitTemplateResponse> {
|
|
81
|
+
/**
|
|
82
|
+
* @generated from field: string html = 1;
|
|
83
|
+
*/
|
|
84
|
+
html: string;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* @generated from field: string modal_img_url = 2;
|
|
88
|
+
*/
|
|
89
|
+
modalImgUrl: string;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @generated from field: string title = 3;
|
|
93
|
+
*/
|
|
94
|
+
title: string;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: repeated ct_logic_uni_rev_payment.v1.TemplateContent content_arr = 4;
|
|
98
|
+
*/
|
|
99
|
+
contentArr: TemplateContent[];
|
|
100
|
+
|
|
101
|
+
constructor(data?: PartialMessage<BnplPaymentLimitTemplateResponse>);
|
|
102
|
+
|
|
103
|
+
static readonly runtime: typeof proto3;
|
|
104
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.BnplPaymentLimitTemplateResponse";
|
|
105
|
+
static readonly fields: FieldList;
|
|
106
|
+
|
|
107
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BnplPaymentLimitTemplateResponse;
|
|
108
|
+
|
|
109
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BnplPaymentLimitTemplateResponse;
|
|
110
|
+
|
|
111
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BnplPaymentLimitTemplateResponse;
|
|
112
|
+
|
|
113
|
+
static equals(a: BnplPaymentLimitTemplateResponse | PlainMessage<BnplPaymentLimitTemplateResponse> | undefined, b: BnplPaymentLimitTemplateResponse | PlainMessage<BnplPaymentLimitTemplateResponse> | undefined): boolean;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @generated from message ct_logic_uni_rev_payment.v1.BnplCallCenterTemplateRequest
|
|
118
|
+
*/
|
|
119
|
+
export declare class BnplCallCenterTemplateRequest extends Message<BnplCallCenterTemplateRequest> {
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: string title = 1;
|
|
122
|
+
*/
|
|
123
|
+
title: string;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: string description = 2;
|
|
127
|
+
*/
|
|
128
|
+
description: string;
|
|
129
|
+
|
|
130
|
+
constructor(data?: PartialMessage<BnplCallCenterTemplateRequest>);
|
|
131
|
+
|
|
132
|
+
static readonly runtime: typeof proto3;
|
|
133
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.BnplCallCenterTemplateRequest";
|
|
134
|
+
static readonly fields: FieldList;
|
|
135
|
+
|
|
136
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BnplCallCenterTemplateRequest;
|
|
137
|
+
|
|
138
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BnplCallCenterTemplateRequest;
|
|
139
|
+
|
|
140
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BnplCallCenterTemplateRequest;
|
|
141
|
+
|
|
142
|
+
static equals(a: BnplCallCenterTemplateRequest | PlainMessage<BnplCallCenterTemplateRequest> | undefined, b: BnplCallCenterTemplateRequest | PlainMessage<BnplCallCenterTemplateRequest> | undefined): boolean;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* @generated from message ct_logic_uni_rev_payment.v1.BnplCallCenterTemplateResponse
|
|
147
|
+
*/
|
|
148
|
+
export declare class BnplCallCenterTemplateResponse extends Message<BnplCallCenterTemplateResponse> {
|
|
149
|
+
/**
|
|
150
|
+
* @generated from field: string html = 1;
|
|
151
|
+
*/
|
|
152
|
+
html: string;
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* @generated from field: string title = 2;
|
|
156
|
+
*/
|
|
157
|
+
title: string;
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @generated from field: ct_logic_uni_rev_payment.v1.TemplateContent content = 3;
|
|
161
|
+
*/
|
|
162
|
+
content?: TemplateContent;
|
|
163
|
+
|
|
164
|
+
constructor(data?: PartialMessage<BnplCallCenterTemplateResponse>);
|
|
165
|
+
|
|
166
|
+
static readonly runtime: typeof proto3;
|
|
167
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.BnplCallCenterTemplateResponse";
|
|
168
|
+
static readonly fields: FieldList;
|
|
169
|
+
|
|
170
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BnplCallCenterTemplateResponse;
|
|
171
|
+
|
|
172
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BnplCallCenterTemplateResponse;
|
|
173
|
+
|
|
174
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BnplCallCenterTemplateResponse;
|
|
175
|
+
|
|
176
|
+
static equals(a: BnplCallCenterTemplateResponse | PlainMessage<BnplCallCenterTemplateResponse> | undefined, b: BnplCallCenterTemplateResponse | PlainMessage<BnplCallCenterTemplateResponse> | undefined): boolean;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GoogleBillingServiceMessageTemplateRequest
|
|
181
|
+
*/
|
|
182
|
+
export declare class GoogleBillingServiceMessageTemplateRequest extends Message<GoogleBillingServiceMessageTemplateRequest> {
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: string title = 1;
|
|
185
|
+
*/
|
|
186
|
+
title: string;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: string description = 2;
|
|
190
|
+
*/
|
|
191
|
+
description: string;
|
|
192
|
+
|
|
193
|
+
constructor(data?: PartialMessage<GoogleBillingServiceMessageTemplateRequest>);
|
|
194
|
+
|
|
195
|
+
static readonly runtime: typeof proto3;
|
|
196
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GoogleBillingServiceMessageTemplateRequest";
|
|
197
|
+
static readonly fields: FieldList;
|
|
198
|
+
|
|
199
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GoogleBillingServiceMessageTemplateRequest;
|
|
200
|
+
|
|
201
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GoogleBillingServiceMessageTemplateRequest;
|
|
202
|
+
|
|
203
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GoogleBillingServiceMessageTemplateRequest;
|
|
204
|
+
|
|
205
|
+
static equals(a: GoogleBillingServiceMessageTemplateRequest | PlainMessage<GoogleBillingServiceMessageTemplateRequest> | undefined, b: GoogleBillingServiceMessageTemplateRequest | PlainMessage<GoogleBillingServiceMessageTemplateRequest> | undefined): boolean;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GoogleBillingServiceMessageTemplateResponse
|
|
210
|
+
*/
|
|
211
|
+
export declare class GoogleBillingServiceMessageTemplateResponse extends Message<GoogleBillingServiceMessageTemplateResponse> {
|
|
212
|
+
/**
|
|
213
|
+
* @generated from field: string html = 1;
|
|
214
|
+
*/
|
|
215
|
+
html: string;
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* @generated from field: string title = 2;
|
|
219
|
+
*/
|
|
220
|
+
title: string;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: ct_logic_uni_rev_payment.v1.TemplateContent content = 3;
|
|
224
|
+
*/
|
|
225
|
+
content?: TemplateContent;
|
|
226
|
+
|
|
227
|
+
constructor(data?: PartialMessage<GoogleBillingServiceMessageTemplateResponse>);
|
|
228
|
+
|
|
229
|
+
static readonly runtime: typeof proto3;
|
|
230
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GoogleBillingServiceMessageTemplateResponse";
|
|
231
|
+
static readonly fields: FieldList;
|
|
232
|
+
|
|
233
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GoogleBillingServiceMessageTemplateResponse;
|
|
234
|
+
|
|
235
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GoogleBillingServiceMessageTemplateResponse;
|
|
236
|
+
|
|
237
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GoogleBillingServiceMessageTemplateResponse;
|
|
238
|
+
|
|
239
|
+
static equals(a: GoogleBillingServiceMessageTemplateResponse | PlainMessage<GoogleBillingServiceMessageTemplateResponse> | undefined, b: GoogleBillingServiceMessageTemplateResponse | PlainMessage<GoogleBillingServiceMessageTemplateResponse> | undefined): boolean;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GoogleBillingPaymentMessageTemplateRequest
|
|
244
|
+
*/
|
|
245
|
+
export declare class GoogleBillingPaymentMessageTemplateRequest extends Message<GoogleBillingPaymentMessageTemplateRequest> {
|
|
246
|
+
/**
|
|
247
|
+
* @generated from field: string title = 1;
|
|
248
|
+
*/
|
|
249
|
+
title: string;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @generated from field: string description = 2;
|
|
253
|
+
*/
|
|
254
|
+
description: string;
|
|
255
|
+
|
|
256
|
+
constructor(data?: PartialMessage<GoogleBillingPaymentMessageTemplateRequest>);
|
|
257
|
+
|
|
258
|
+
static readonly runtime: typeof proto3;
|
|
259
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GoogleBillingPaymentMessageTemplateRequest";
|
|
260
|
+
static readonly fields: FieldList;
|
|
261
|
+
|
|
262
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GoogleBillingPaymentMessageTemplateRequest;
|
|
263
|
+
|
|
264
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GoogleBillingPaymentMessageTemplateRequest;
|
|
265
|
+
|
|
266
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GoogleBillingPaymentMessageTemplateRequest;
|
|
267
|
+
|
|
268
|
+
static equals(a: GoogleBillingPaymentMessageTemplateRequest | PlainMessage<GoogleBillingPaymentMessageTemplateRequest> | undefined, b: GoogleBillingPaymentMessageTemplateRequest | PlainMessage<GoogleBillingPaymentMessageTemplateRequest> | undefined): boolean;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GoogleBillingPaymentMessageTemplateResponse
|
|
273
|
+
*/
|
|
274
|
+
export declare class GoogleBillingPaymentMessageTemplateResponse extends Message<GoogleBillingPaymentMessageTemplateResponse> {
|
|
275
|
+
/**
|
|
276
|
+
* @generated from field: string html = 1;
|
|
277
|
+
*/
|
|
278
|
+
html: string;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: string title = 2;
|
|
282
|
+
*/
|
|
283
|
+
title: string;
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* @generated from field: ct_logic_uni_rev_payment.v1.TemplateContent content = 3;
|
|
287
|
+
*/
|
|
288
|
+
content?: TemplateContent;
|
|
289
|
+
|
|
290
|
+
constructor(data?: PartialMessage<GoogleBillingPaymentMessageTemplateResponse>);
|
|
291
|
+
|
|
292
|
+
static readonly runtime: typeof proto3;
|
|
293
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GoogleBillingPaymentMessageTemplateResponse";
|
|
294
|
+
static readonly fields: FieldList;
|
|
295
|
+
|
|
296
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GoogleBillingPaymentMessageTemplateResponse;
|
|
297
|
+
|
|
298
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GoogleBillingPaymentMessageTemplateResponse;
|
|
299
|
+
|
|
300
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GoogleBillingPaymentMessageTemplateResponse;
|
|
301
|
+
|
|
302
|
+
static equals(a: GoogleBillingPaymentMessageTemplateResponse | PlainMessage<GoogleBillingPaymentMessageTemplateResponse> | undefined, b: GoogleBillingPaymentMessageTemplateResponse | PlainMessage<GoogleBillingPaymentMessageTemplateResponse> | undefined): boolean;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GoogleBillingPaymentPageTemplateRequest
|
|
307
|
+
*/
|
|
308
|
+
export declare class GoogleBillingPaymentPageTemplateRequest extends Message<GoogleBillingPaymentPageTemplateRequest> {
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: string title = 1;
|
|
311
|
+
*/
|
|
312
|
+
title: string;
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* @generated from field: string description = 2;
|
|
316
|
+
*/
|
|
317
|
+
description: string;
|
|
318
|
+
|
|
319
|
+
constructor(data?: PartialMessage<GoogleBillingPaymentPageTemplateRequest>);
|
|
320
|
+
|
|
321
|
+
static readonly runtime: typeof proto3;
|
|
322
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GoogleBillingPaymentPageTemplateRequest";
|
|
323
|
+
static readonly fields: FieldList;
|
|
324
|
+
|
|
325
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GoogleBillingPaymentPageTemplateRequest;
|
|
326
|
+
|
|
327
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GoogleBillingPaymentPageTemplateRequest;
|
|
328
|
+
|
|
329
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GoogleBillingPaymentPageTemplateRequest;
|
|
330
|
+
|
|
331
|
+
static equals(a: GoogleBillingPaymentPageTemplateRequest | PlainMessage<GoogleBillingPaymentPageTemplateRequest> | undefined, b: GoogleBillingPaymentPageTemplateRequest | PlainMessage<GoogleBillingPaymentPageTemplateRequest> | undefined): boolean;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* @generated from message ct_logic_uni_rev_payment.v1.GoogleBillingPaymentPageTemplateResponse
|
|
336
|
+
*/
|
|
337
|
+
export declare class GoogleBillingPaymentPageTemplateResponse extends Message<GoogleBillingPaymentPageTemplateResponse> {
|
|
338
|
+
/**
|
|
339
|
+
* @generated from field: string html = 1;
|
|
340
|
+
*/
|
|
341
|
+
html: string;
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* @generated from field: string title = 2;
|
|
345
|
+
*/
|
|
346
|
+
title: string;
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* @generated from field: string description = 3;
|
|
350
|
+
*/
|
|
351
|
+
description: string;
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @generated from field: string footer = 4;
|
|
355
|
+
*/
|
|
356
|
+
footer: string;
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* @generated from field: string button_text = 5;
|
|
360
|
+
*/
|
|
361
|
+
buttonText: string;
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* @generated from field: string modal_img_url = 6;
|
|
365
|
+
*/
|
|
366
|
+
modalImgUrl: string;
|
|
367
|
+
|
|
368
|
+
/**
|
|
369
|
+
* @generated from field: repeated ct_logic_uni_rev_payment.v1.TemplateContent content_arr = 7;
|
|
370
|
+
*/
|
|
371
|
+
contentArr: TemplateContent[];
|
|
372
|
+
|
|
373
|
+
constructor(data?: PartialMessage<GoogleBillingPaymentPageTemplateResponse>);
|
|
374
|
+
|
|
375
|
+
static readonly runtime: typeof proto3;
|
|
376
|
+
static readonly typeName = "ct_logic_uni_rev_payment.v1.GoogleBillingPaymentPageTemplateResponse";
|
|
377
|
+
static readonly fields: FieldList;
|
|
378
|
+
|
|
379
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GoogleBillingPaymentPageTemplateResponse;
|
|
380
|
+
|
|
381
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GoogleBillingPaymentPageTemplateResponse;
|
|
382
|
+
|
|
383
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GoogleBillingPaymentPageTemplateResponse;
|
|
384
|
+
|
|
385
|
+
static equals(a: GoogleBillingPaymentPageTemplateResponse | PlainMessage<GoogleBillingPaymentPageTemplateResponse> | undefined, b: GoogleBillingPaymentPageTemplateResponse | PlainMessage<GoogleBillingPaymentPageTemplateResponse> | undefined): boolean;
|
|
386
|
+
}
|
|
387
|
+
|