hs-playlib 0.2.0 → 0.4.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.
@@ -582,6 +582,9 @@ export namespace types {
582
582
 
583
583
  /** Customer's phone number */
584
584
  phoneNumber?: (string|null);
585
+
586
+ /** Customer's phone country code */
587
+ phoneCountryCode?: (string|null);
585
588
  }
586
589
 
587
590
  /** Represents a Customer. */
@@ -608,6 +611,9 @@ export namespace types {
608
611
  /** Customer's phone number */
609
612
  public phoneNumber?: (string|null);
610
613
 
614
+ /** Customer's phone country code */
615
+ public phoneCountryCode?: (string|null);
616
+
611
617
  /**
612
618
  * Creates a new Customer instance using the specified properties.
613
619
  * @param [properties] Properties to set
@@ -1170,7 +1176,8 @@ export namespace types {
1170
1176
  HYPERPG = 107,
1171
1177
  ZIFT = 108,
1172
1178
  REVOLV3 = 109,
1173
- TRUELAYER = 110
1179
+ TRUELAYER = 110,
1180
+ FINIX = 111
1174
1181
  }
1175
1182
 
1176
1183
  /** Payment method types */
@@ -1949,7 +1956,7 @@ export namespace types {
1949
1956
  cavv?: (string|null);
1950
1957
 
1951
1958
  /** 3DS Server Transaction ID. */
1952
- threedsServerTransactionId?: (types.IIdentifier|null);
1959
+ threedsServerTransactionId?: (string|null);
1953
1960
 
1954
1961
  /** 3DS Message Version (e.g., "2.1.0", "2.2.0"). */
1955
1962
  messageVersion?: (string|null);
@@ -1992,7 +1999,7 @@ export namespace types {
1992
1999
  public cavv?: (string|null);
1993
2000
 
1994
2001
  /** 3DS Server Transaction ID. */
1995
- public threedsServerTransactionId?: (types.IIdentifier|null);
2002
+ public threedsServerTransactionId?: (string|null);
1996
2003
 
1997
2004
  /** 3DS Message Version (e.g., "2.1.0", "2.2.0"). */
1998
2005
  public messageVersion?: (string|null);
@@ -2834,6 +2841,250 @@ export namespace types {
2834
2841
  public static getTypeUrl(typeUrlPrefix?: string): string;
2835
2842
  }
2836
2843
 
2844
+ /** Tax status for L2/L3 data. */
2845
+ enum TaxStatus {
2846
+ TAX_STATUS_UNSPECIFIED = 0,
2847
+ TAX_STATUS_TAXABLE = 1,
2848
+ TAX_STATUS_EXEMPT = 2
2849
+ }
2850
+
2851
+ /** Properties of an OrderInfo. */
2852
+ interface IOrderInfo {
2853
+
2854
+ /** Date the order was placed (Unix timestamp in seconds) */
2855
+ orderDate?: (number|Long|null);
2856
+
2857
+ /** Line items for the order */
2858
+ orderDetails?: (types.IOrderDetailsWithAmount[]|null);
2859
+
2860
+ /** Merchant's internal reference ID for the order */
2861
+ merchantOrderReferenceId?: (string|null);
2862
+
2863
+ /** Discount applied to the order (in minor currency units) */
2864
+ discountAmount?: (number|Long|null);
2865
+
2866
+ /** Shipping cost for the order (in minor currency units) */
2867
+ shippingCost?: (number|Long|null);
2868
+
2869
+ /** Duty/customs amount for the order (in minor currency units) */
2870
+ dutyAmount?: (number|Long|null);
2871
+ }
2872
+
2873
+ /** Order-level information for L2/L3 data. */
2874
+ class OrderInfo implements IOrderInfo {
2875
+
2876
+ /**
2877
+ * Constructs a new OrderInfo.
2878
+ * @param [properties] Properties to set
2879
+ */
2880
+ constructor(properties?: types.IOrderInfo);
2881
+
2882
+ /** Date the order was placed (Unix timestamp in seconds) */
2883
+ public orderDate?: (number|Long|null);
2884
+
2885
+ /** Line items for the order */
2886
+ public orderDetails: types.IOrderDetailsWithAmount[];
2887
+
2888
+ /** Merchant's internal reference ID for the order */
2889
+ public merchantOrderReferenceId?: (string|null);
2890
+
2891
+ /** Discount applied to the order (in minor currency units) */
2892
+ public discountAmount?: (number|Long|null);
2893
+
2894
+ /** Shipping cost for the order (in minor currency units) */
2895
+ public shippingCost?: (number|Long|null);
2896
+
2897
+ /** Duty/customs amount for the order (in minor currency units) */
2898
+ public dutyAmount?: (number|Long|null);
2899
+
2900
+ /**
2901
+ * Creates a new OrderInfo instance using the specified properties.
2902
+ * @param [properties] Properties to set
2903
+ * @returns OrderInfo instance
2904
+ */
2905
+ public static create(properties?: types.IOrderInfo): types.OrderInfo;
2906
+
2907
+ /**
2908
+ * Encodes the specified OrderInfo message. Does not implicitly {@link types.OrderInfo.verify|verify} messages.
2909
+ * @param message OrderInfo message or plain object to encode
2910
+ * @param [writer] Writer to encode to
2911
+ * @returns Writer
2912
+ */
2913
+ public static encode(message: types.IOrderInfo, writer?: $protobuf.Writer): $protobuf.Writer;
2914
+
2915
+ /**
2916
+ * Decodes an OrderInfo message from the specified reader or buffer.
2917
+ * @param reader Reader or buffer to decode from
2918
+ * @param [length] Message length if known beforehand
2919
+ * @returns OrderInfo
2920
+ * @throws {Error} If the payload is not a reader or valid buffer
2921
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2922
+ */
2923
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.OrderInfo;
2924
+
2925
+ /**
2926
+ * Verifies an OrderInfo message.
2927
+ * @param message Plain object to verify
2928
+ * @returns `null` if valid, otherwise the reason why it is not
2929
+ */
2930
+ public static verify(message: { [k: string]: any }): (string|null);
2931
+
2932
+ /**
2933
+ * Gets the default type url for OrderInfo
2934
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2935
+ * @returns The default type url
2936
+ */
2937
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2938
+ }
2939
+
2940
+ /** Properties of a TaxInfo. */
2941
+ interface ITaxInfo {
2942
+
2943
+ /** Tax status of the order */
2944
+ taxStatus?: (types.TaxStatus|null);
2945
+
2946
+ /** Customer's tax registration ID (sensitive) */
2947
+ customerTaxRegistrationId?: (types.ISecretString|null);
2948
+
2949
+ /** Merchant's tax registration ID (sensitive) */
2950
+ merchantTaxRegistrationId?: (types.ISecretString|null);
2951
+
2952
+ /** Tax on the shipping amount (in minor currency units) */
2953
+ shippingAmountTax?: (number|Long|null);
2954
+
2955
+ /** Total tax amount for the order (in minor currency units) */
2956
+ orderTaxAmount?: (number|Long|null);
2957
+ }
2958
+
2959
+ /** Tax information for L2/L3 data. */
2960
+ class TaxInfo implements ITaxInfo {
2961
+
2962
+ /**
2963
+ * Constructs a new TaxInfo.
2964
+ * @param [properties] Properties to set
2965
+ */
2966
+ constructor(properties?: types.ITaxInfo);
2967
+
2968
+ /** Tax status of the order */
2969
+ public taxStatus?: (types.TaxStatus|null);
2970
+
2971
+ /** Customer's tax registration ID (sensitive) */
2972
+ public customerTaxRegistrationId?: (types.ISecretString|null);
2973
+
2974
+ /** Merchant's tax registration ID (sensitive) */
2975
+ public merchantTaxRegistrationId?: (types.ISecretString|null);
2976
+
2977
+ /** Tax on the shipping amount (in minor currency units) */
2978
+ public shippingAmountTax?: (number|Long|null);
2979
+
2980
+ /** Total tax amount for the order (in minor currency units) */
2981
+ public orderTaxAmount?: (number|Long|null);
2982
+
2983
+ /**
2984
+ * Creates a new TaxInfo instance using the specified properties.
2985
+ * @param [properties] Properties to set
2986
+ * @returns TaxInfo instance
2987
+ */
2988
+ public static create(properties?: types.ITaxInfo): types.TaxInfo;
2989
+
2990
+ /**
2991
+ * Encodes the specified TaxInfo message. Does not implicitly {@link types.TaxInfo.verify|verify} messages.
2992
+ * @param message TaxInfo message or plain object to encode
2993
+ * @param [writer] Writer to encode to
2994
+ * @returns Writer
2995
+ */
2996
+ public static encode(message: types.ITaxInfo, writer?: $protobuf.Writer): $protobuf.Writer;
2997
+
2998
+ /**
2999
+ * Decodes a TaxInfo message from the specified reader or buffer.
3000
+ * @param reader Reader or buffer to decode from
3001
+ * @param [length] Message length if known beforehand
3002
+ * @returns TaxInfo
3003
+ * @throws {Error} If the payload is not a reader or valid buffer
3004
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3005
+ */
3006
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.TaxInfo;
3007
+
3008
+ /**
3009
+ * Verifies a TaxInfo message.
3010
+ * @param message Plain object to verify
3011
+ * @returns `null` if valid, otherwise the reason why it is not
3012
+ */
3013
+ public static verify(message: { [k: string]: any }): (string|null);
3014
+
3015
+ /**
3016
+ * Gets the default type url for TaxInfo
3017
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3018
+ * @returns The default type url
3019
+ */
3020
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3021
+ }
3022
+
3023
+ /** Properties of a L2L3Data. */
3024
+ interface IL2L3Data {
3025
+
3026
+ /** Order-level information */
3027
+ orderInfo?: (types.IOrderInfo|null);
3028
+
3029
+ /** Tax information */
3030
+ taxInfo?: (types.ITaxInfo|null);
3031
+ }
3032
+
3033
+ /** Level 2 / Level 3 data for enhanced payment processing. */
3034
+ class L2L3Data implements IL2L3Data {
3035
+
3036
+ /**
3037
+ * Constructs a new L2L3Data.
3038
+ * @param [properties] Properties to set
3039
+ */
3040
+ constructor(properties?: types.IL2L3Data);
3041
+
3042
+ /** Order-level information */
3043
+ public orderInfo?: (types.IOrderInfo|null);
3044
+
3045
+ /** Tax information */
3046
+ public taxInfo?: (types.ITaxInfo|null);
3047
+
3048
+ /**
3049
+ * Creates a new L2L3Data instance using the specified properties.
3050
+ * @param [properties] Properties to set
3051
+ * @returns L2L3Data instance
3052
+ */
3053
+ public static create(properties?: types.IL2L3Data): types.L2L3Data;
3054
+
3055
+ /**
3056
+ * Encodes the specified L2L3Data message. Does not implicitly {@link types.L2L3Data.verify|verify} messages.
3057
+ * @param message L2L3Data message or plain object to encode
3058
+ * @param [writer] Writer to encode to
3059
+ * @returns Writer
3060
+ */
3061
+ public static encode(message: types.IL2L3Data, writer?: $protobuf.Writer): $protobuf.Writer;
3062
+
3063
+ /**
3064
+ * Decodes a L2L3Data message from the specified reader or buffer.
3065
+ * @param reader Reader or buffer to decode from
3066
+ * @param [length] Message length if known beforehand
3067
+ * @returns L2L3Data
3068
+ * @throws {Error} If the payload is not a reader or valid buffer
3069
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3070
+ */
3071
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.L2L3Data;
3072
+
3073
+ /**
3074
+ * Verifies a L2L3Data message.
3075
+ * @param message Plain object to verify
3076
+ * @returns `null` if valid, otherwise the reason why it is not
3077
+ */
3078
+ public static verify(message: { [k: string]: any }): (string|null);
3079
+
3080
+ /**
3081
+ * Gets the default type url for L2L3Data
3082
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3083
+ * @returns The default type url
3084
+ */
3085
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3086
+ }
3087
+
2837
3088
  /** Properties of a RedirectionResponse. */
2838
3089
  interface IRedirectionResponse {
2839
3090
 
@@ -3601,7 +3852,7 @@ export namespace types {
3601
3852
  sourceVerified?: (boolean|null);
3602
3853
 
3603
3854
  /** Reference */
3604
- merchantEventId?: (types.IIdentifier|null);
3855
+ merchantEventId?: (string|null);
3605
3856
 
3606
3857
  /** Event Status */
3607
3858
  eventStatus?: (types.WebhookEventStatus|null);
@@ -3626,7 +3877,7 @@ export namespace types {
3626
3877
  public sourceVerified: boolean;
3627
3878
 
3628
3879
  /** Reference */
3629
- public merchantEventId?: (types.IIdentifier|null);
3880
+ public merchantEventId?: (string|null);
3630
3881
 
3631
3882
  /** Event Status */
3632
3883
  public eventStatus: types.WebhookEventStatus;
@@ -6485,7 +6736,7 @@ export namespace types {
6485
6736
  interface IPaymentServiceAuthorizeRequest {
6486
6737
 
6487
6738
  /** Identification */
6488
- merchantTransactionId?: (types.IIdentifier|null);
6739
+ merchantTransactionId?: (string|null);
6489
6740
 
6490
6741
  /** Amount Information (using Money for consistency) */
6491
6742
  amount?: (types.IMoney|null);
@@ -6609,6 +6860,9 @@ export namespace types {
6609
6860
 
6610
6861
  /** Payment Method Token */
6611
6862
  paymentMethodToken?: (types.ISecretString|null);
6863
+
6864
+ /** Level 2 / Level 3 data for enhanced payment processing */
6865
+ l2L3Data?: (types.IL2L3Data|null);
6612
6866
  }
6613
6867
 
6614
6868
  /** Request message for authorizing a payment */
@@ -6621,7 +6875,7 @@ export namespace types {
6621
6875
  constructor(properties?: types.IPaymentServiceAuthorizeRequest);
6622
6876
 
6623
6877
  /** Identification */
6624
- public merchantTransactionId?: (types.IIdentifier|null);
6878
+ public merchantTransactionId?: (string|null);
6625
6879
 
6626
6880
  /** Amount Information (using Money for consistency) */
6627
6881
  public amount?: (types.IMoney|null);
@@ -6746,6 +7000,9 @@ export namespace types {
6746
7000
  /** Payment Method Token */
6747
7001
  public paymentMethodToken?: (types.ISecretString|null);
6748
7002
 
7003
+ /** Level 2 / Level 3 data for enhanced payment processing */
7004
+ public l2L3Data?: (types.IL2L3Data|null);
7005
+
6749
7006
  /**
6750
7007
  * Creates a new PaymentServiceAuthorizeRequest instance using the specified properties.
6751
7008
  * @param [properties] Properties to set
@@ -6790,10 +7047,10 @@ export namespace types {
6790
7047
  interface IPaymentServiceAuthorizeResponse {
6791
7048
 
6792
7049
  /** Identification */
6793
- merchantTransactionId?: (types.IIdentifier|null);
7050
+ merchantTransactionId?: (string|null);
6794
7051
 
6795
7052
  /** PaymentServiceAuthorizeResponse connectorTransactionId */
6796
- connectorTransactionId?: (types.IIdentifier|null);
7053
+ connectorTransactionId?: (string|null);
6797
7054
 
6798
7055
  /** Status Information */
6799
7056
  status?: (types.PaymentStatus|null);
@@ -6854,10 +7111,10 @@ export namespace types {
6854
7111
  constructor(properties?: types.IPaymentServiceAuthorizeResponse);
6855
7112
 
6856
7113
  /** Identification */
6857
- public merchantTransactionId?: (types.IIdentifier|null);
7114
+ public merchantTransactionId?: (string|null);
6858
7115
 
6859
7116
  /** PaymentServiceAuthorizeResponse connectorTransactionId. */
6860
- public connectorTransactionId?: (types.IIdentifier|null);
7117
+ public connectorTransactionId?: (string|null);
6861
7118
 
6862
7119
  /** Status Information */
6863
7120
  public status: types.PaymentStatus;
@@ -6951,7 +7208,7 @@ export namespace types {
6951
7208
  interface IPaymentServiceGetRequest {
6952
7209
 
6953
7210
  /** PaymentServiceGetRequest connectorTransactionId */
6954
- connectorTransactionId?: (types.IIdentifier|null);
7211
+ connectorTransactionId?: (string|null);
6955
7212
 
6956
7213
  /** PaymentServiceGetRequest encodedData */
6957
7214
  encodedData?: (string|null);
@@ -7000,7 +7257,7 @@ export namespace types {
7000
7257
  constructor(properties?: types.IPaymentServiceGetRequest);
7001
7258
 
7002
7259
  /** PaymentServiceGetRequest connectorTransactionId. */
7003
- public connectorTransactionId?: (types.IIdentifier|null);
7260
+ public connectorTransactionId: string;
7004
7261
 
7005
7262
  /** PaymentServiceGetRequest encodedData. */
7006
7263
  public encodedData?: (string|null);
@@ -7082,7 +7339,7 @@ export namespace types {
7082
7339
  interface IPaymentServiceGetResponse {
7083
7340
 
7084
7341
  /** Identification */
7085
- connectorTransactionId?: (types.IIdentifier|null);
7342
+ connectorTransactionId?: (string|null);
7086
7343
 
7087
7344
  /** Status Information */
7088
7345
  status?: (types.PaymentStatus|null);
@@ -7173,7 +7430,7 @@ export namespace types {
7173
7430
  constructor(properties?: types.IPaymentServiceGetResponse);
7174
7431
 
7175
7432
  /** Identification */
7176
- public connectorTransactionId?: (types.IIdentifier|null);
7433
+ public connectorTransactionId?: (string|null);
7177
7434
 
7178
7435
  /** Status Information */
7179
7436
  public status: types.PaymentStatus;
@@ -7297,10 +7554,10 @@ export namespace types {
7297
7554
  interface IPaymentServiceVoidRequest {
7298
7555
 
7299
7556
  /** Identification */
7300
- merchantVoidId?: (types.IIdentifier|null);
7557
+ merchantVoidId?: (string|null);
7301
7558
 
7302
7559
  /** PaymentServiceVoidRequest connectorTransactionId */
7303
- connectorTransactionId?: (types.IIdentifier|null);
7560
+ connectorTransactionId?: (string|null);
7304
7561
 
7305
7562
  /** Void Details */
7306
7563
  cancellationReason?: (string|null);
@@ -7340,10 +7597,10 @@ export namespace types {
7340
7597
  constructor(properties?: types.IPaymentServiceVoidRequest);
7341
7598
 
7342
7599
  /** Identification */
7343
- public merchantVoidId?: (types.IIdentifier|null);
7600
+ public merchantVoidId?: (string|null);
7344
7601
 
7345
7602
  /** PaymentServiceVoidRequest connectorTransactionId. */
7346
- public connectorTransactionId?: (types.IIdentifier|null);
7603
+ public connectorTransactionId: string;
7347
7604
 
7348
7605
  /** Void Details */
7349
7606
  public cancellationReason?: (string|null);
@@ -7416,7 +7673,7 @@ export namespace types {
7416
7673
  interface IPaymentServiceVoidResponse {
7417
7674
 
7418
7675
  /** Identification */
7419
- connectorTransactionId?: (types.IIdentifier|null);
7676
+ connectorTransactionId?: (string|null);
7420
7677
 
7421
7678
  /** Status Information */
7422
7679
  status?: (types.PaymentStatus|null);
@@ -7431,7 +7688,7 @@ export namespace types {
7431
7688
  responseHeaders?: ({ [k: string]: string }|null);
7432
7689
 
7433
7690
  /** Reference */
7434
- merchantTransactionId?: (types.IIdentifier|null);
7691
+ merchantTransactionId?: (string|null);
7435
7692
 
7436
7693
  /** State Information */
7437
7694
  state?: (types.IConnectorState|null);
@@ -7459,7 +7716,7 @@ export namespace types {
7459
7716
  constructor(properties?: types.IPaymentServiceVoidResponse);
7460
7717
 
7461
7718
  /** Identification */
7462
- public connectorTransactionId?: (types.IIdentifier|null);
7719
+ public connectorTransactionId?: (string|null);
7463
7720
 
7464
7721
  /** Status Information */
7465
7722
  public status: types.PaymentStatus;
@@ -7474,7 +7731,7 @@ export namespace types {
7474
7731
  public responseHeaders: { [k: string]: string };
7475
7732
 
7476
7733
  /** Reference */
7477
- public merchantTransactionId?: (types.IIdentifier|null);
7734
+ public merchantTransactionId?: (string|null);
7478
7735
 
7479
7736
  /** State Information */
7480
7737
  public state?: (types.IConnectorState|null);
@@ -7535,10 +7792,10 @@ export namespace types {
7535
7792
  interface IPaymentServiceReverseRequest {
7536
7793
 
7537
7794
  /** Identification */
7538
- merchantReverseId?: (types.IIdentifier|null);
7795
+ merchantReverseId?: (string|null);
7539
7796
 
7540
7797
  /** PaymentServiceReverseRequest connectorTransactionId */
7541
- connectorTransactionId?: (types.IIdentifier|null);
7798
+ connectorTransactionId?: (string|null);
7542
7799
 
7543
7800
  /** Reverse Details */
7544
7801
  cancellationReason?: (string|null);
@@ -7566,10 +7823,10 @@ export namespace types {
7566
7823
  constructor(properties?: types.IPaymentServiceReverseRequest);
7567
7824
 
7568
7825
  /** Identification */
7569
- public merchantReverseId?: (types.IIdentifier|null);
7826
+ public merchantReverseId: string;
7570
7827
 
7571
7828
  /** PaymentServiceReverseRequest connectorTransactionId. */
7572
- public connectorTransactionId?: (types.IIdentifier|null);
7829
+ public connectorTransactionId: string;
7573
7830
 
7574
7831
  /** Reverse Details */
7575
7832
  public cancellationReason?: (string|null);
@@ -7630,7 +7887,7 @@ export namespace types {
7630
7887
  interface IPaymentServiceReverseResponse {
7631
7888
 
7632
7889
  /** Identification */
7633
- connectorTransactionId?: (types.IIdentifier|null);
7890
+ connectorTransactionId?: (string|null);
7634
7891
 
7635
7892
  /** Status Information */
7636
7893
  status?: (types.PaymentStatus|null);
@@ -7645,7 +7902,7 @@ export namespace types {
7645
7902
  responseHeaders?: ({ [k: string]: string }|null);
7646
7903
 
7647
7904
  /** Reference */
7648
- merchantReverseId?: (types.IIdentifier|null);
7905
+ merchantReverseId?: (string|null);
7649
7906
  }
7650
7907
 
7651
7908
  /** Response message for reversing a captured payment if not yet settled (similar to void but for post-capture transactions) */
@@ -7658,7 +7915,7 @@ export namespace types {
7658
7915
  constructor(properties?: types.IPaymentServiceReverseResponse);
7659
7916
 
7660
7917
  /** Identification */
7661
- public connectorTransactionId?: (types.IIdentifier|null);
7918
+ public connectorTransactionId?: (string|null);
7662
7919
 
7663
7920
  /** Status Information */
7664
7921
  public status: types.PaymentStatus;
@@ -7673,7 +7930,7 @@ export namespace types {
7673
7930
  public responseHeaders: { [k: string]: string };
7674
7931
 
7675
7932
  /** Reference */
7676
- public merchantReverseId?: (types.IIdentifier|null);
7933
+ public merchantReverseId?: (string|null);
7677
7934
 
7678
7935
  /**
7679
7936
  * Creates a new PaymentServiceReverseResponse instance using the specified properties.
@@ -7719,7 +7976,7 @@ export namespace types {
7719
7976
  interface IMerchantAuthenticationServiceCreateAccessTokenRequest {
7720
7977
 
7721
7978
  /** MerchantAuthenticationServiceCreateAccessTokenRequest merchantAccessTokenId */
7722
- merchantAccessTokenId?: (types.IIdentifier|null);
7979
+ merchantAccessTokenId?: (string|null);
7723
7980
 
7724
7981
  /** The connector to create the access token for */
7725
7982
  connector?: (types.Connector|null);
@@ -7744,7 +8001,7 @@ export namespace types {
7744
8001
  constructor(properties?: types.IMerchantAuthenticationServiceCreateAccessTokenRequest);
7745
8002
 
7746
8003
  /** MerchantAuthenticationServiceCreateAccessTokenRequest merchantAccessTokenId. */
7747
- public merchantAccessTokenId?: (types.IIdentifier|null);
8004
+ public merchantAccessTokenId?: (string|null);
7748
8005
 
7749
8006
  /** The connector to create the access token for */
7750
8007
  public connector: types.Connector;
@@ -7820,7 +8077,7 @@ export namespace types {
7820
8077
  statusCode?: (number|null);
7821
8078
 
7822
8079
  /** MerchantAuthenticationServiceCreateAccessTokenResponse merchantAccessTokenId */
7823
- merchantAccessTokenId?: (types.IIdentifier|null);
8080
+ merchantAccessTokenId?: (string|null);
7824
8081
  }
7825
8082
 
7826
8083
  /** Response message for creating an access token */
@@ -7851,7 +8108,7 @@ export namespace types {
7851
8108
  public statusCode: number;
7852
8109
 
7853
8110
  /** MerchantAuthenticationServiceCreateAccessTokenResponse merchantAccessTokenId. */
7854
- public merchantAccessTokenId?: (types.IIdentifier|null);
8111
+ public merchantAccessTokenId?: (string|null);
7855
8112
 
7856
8113
  /**
7857
8114
  * Creates a new MerchantAuthenticationServiceCreateAccessTokenResponse instance using the specified properties.
@@ -7897,7 +8154,7 @@ export namespace types {
7897
8154
  interface IMerchantAuthenticationServiceCreateSessionTokenRequest {
7898
8155
 
7899
8156
  /** Identification */
7900
- merchantSessionId?: (types.IIdentifier|null);
8157
+ merchantSessionId?: (string|null);
7901
8158
 
7902
8159
  /** Amount Information */
7903
8160
  amount?: (types.IMoney|null);
@@ -7928,7 +8185,7 @@ export namespace types {
7928
8185
  constructor(properties?: types.IMerchantAuthenticationServiceCreateSessionTokenRequest);
7929
8186
 
7930
8187
  /** Identification */
7931
- public merchantSessionId?: (types.IIdentifier|null);
8188
+ public merchantSessionId: string;
7932
8189
 
7933
8190
  /** Amount Information */
7934
8191
  public amount?: (types.IMoney|null);
@@ -8063,7 +8320,7 @@ export namespace types {
8063
8320
  interface IMerchantAuthenticationServiceCreateSdkSessionTokenRequest {
8064
8321
 
8065
8322
  /** Identification */
8066
- merchantSdkSessionId?: (types.IIdentifier|null);
8323
+ merchantSdkSessionId?: (string|null);
8067
8324
 
8068
8325
  /** Amount Information */
8069
8326
  amount?: (types.IMoney|null);
@@ -8100,7 +8357,7 @@ export namespace types {
8100
8357
  constructor(properties?: types.IMerchantAuthenticationServiceCreateSdkSessionTokenRequest);
8101
8358
 
8102
8359
  /** Identification */
8103
- public merchantSdkSessionId?: (types.IIdentifier|null);
8360
+ public merchantSdkSessionId: string;
8104
8361
 
8105
8362
  /** Amount Information */
8106
8363
  public amount?: (types.IMoney|null);
@@ -8253,10 +8510,10 @@ export namespace types {
8253
8510
  interface IPaymentServiceCaptureRequest {
8254
8511
 
8255
8512
  /** Identification */
8256
- merchantCaptureId?: (types.IIdentifier|null);
8513
+ merchantCaptureId?: (string|null);
8257
8514
 
8258
8515
  /** PaymentServiceCaptureRequest connectorTransactionId */
8259
- connectorTransactionId?: (types.IIdentifier|null);
8516
+ connectorTransactionId?: (string|null);
8260
8517
 
8261
8518
  /** Capture Details */
8262
8519
  amountToCapture?: (types.IMoney|null);
@@ -8296,10 +8553,10 @@ export namespace types {
8296
8553
  constructor(properties?: types.IPaymentServiceCaptureRequest);
8297
8554
 
8298
8555
  /** Identification */
8299
- public merchantCaptureId?: (types.IIdentifier|null);
8556
+ public merchantCaptureId?: (string|null);
8300
8557
 
8301
8558
  /** PaymentServiceCaptureRequest connectorTransactionId. */
8302
- public connectorTransactionId?: (types.IIdentifier|null);
8559
+ public connectorTransactionId: string;
8303
8560
 
8304
8561
  /** Capture Details */
8305
8562
  public amountToCapture?: (types.IMoney|null);
@@ -8372,7 +8629,7 @@ export namespace types {
8372
8629
  interface IPaymentServiceCaptureResponse {
8373
8630
 
8374
8631
  /** Identification */
8375
- connectorTransactionId?: (types.IIdentifier|null);
8632
+ connectorTransactionId?: (string|null);
8376
8633
 
8377
8634
  /** Status Information */
8378
8635
  status?: (types.PaymentStatus|null);
@@ -8387,7 +8644,7 @@ export namespace types {
8387
8644
  responseHeaders?: ({ [k: string]: string }|null);
8388
8645
 
8389
8646
  /** Reference */
8390
- merchantCaptureId?: (types.IIdentifier|null);
8647
+ merchantCaptureId?: (string|null);
8391
8648
 
8392
8649
  /** State Information */
8393
8650
  state?: (types.IConnectorState|null);
@@ -8418,7 +8675,7 @@ export namespace types {
8418
8675
  constructor(properties?: types.IPaymentServiceCaptureResponse);
8419
8676
 
8420
8677
  /** Identification */
8421
- public connectorTransactionId?: (types.IIdentifier|null);
8678
+ public connectorTransactionId?: (string|null);
8422
8679
 
8423
8680
  /** Status Information */
8424
8681
  public status: types.PaymentStatus;
@@ -8433,7 +8690,7 @@ export namespace types {
8433
8690
  public responseHeaders: { [k: string]: string };
8434
8691
 
8435
8692
  /** Reference */
8436
- public merchantCaptureId?: (types.IIdentifier|null);
8693
+ public merchantCaptureId?: (string|null);
8437
8694
 
8438
8695
  /** State Information */
8439
8696
  public state?: (types.IConnectorState|null);
@@ -8497,7 +8754,7 @@ export namespace types {
8497
8754
  interface IPaymentServiceCreateOrderRequest {
8498
8755
 
8499
8756
  /** Identification */
8500
- merchantOrderId?: (types.IIdentifier|null);
8757
+ merchantOrderId?: (string|null);
8501
8758
 
8502
8759
  /** Amount Information */
8503
8760
  amount?: (types.IMoney|null);
@@ -8531,7 +8788,7 @@ export namespace types {
8531
8788
  constructor(properties?: types.IPaymentServiceCreateOrderRequest);
8532
8789
 
8533
8790
  /** Identification */
8534
- public merchantOrderId?: (types.IIdentifier|null);
8791
+ public merchantOrderId: string;
8535
8792
 
8536
8793
  /** Amount Information */
8537
8794
  public amount?: (types.IMoney|null);
@@ -8598,7 +8855,7 @@ export namespace types {
8598
8855
  interface IPaymentServiceCreateOrderResponse {
8599
8856
 
8600
8857
  /** Identification */
8601
- connectorOrderId?: (types.IIdentifier|null);
8858
+ connectorOrderId?: (string|null);
8602
8859
 
8603
8860
  /** Status Information */
8604
8861
  status?: (types.PaymentStatus|null);
@@ -8613,7 +8870,7 @@ export namespace types {
8613
8870
  responseHeaders?: ({ [k: string]: string }|null);
8614
8871
 
8615
8872
  /** Reference */
8616
- merchantOrderId?: (types.IIdentifier|null);
8873
+ merchantOrderId?: (string|null);
8617
8874
 
8618
8875
  /** Raw Request/Response for debugging */
8619
8876
  rawConnectorRequest?: (types.ISecretString|null);
@@ -8635,7 +8892,7 @@ export namespace types {
8635
8892
  constructor(properties?: types.IPaymentServiceCreateOrderResponse);
8636
8893
 
8637
8894
  /** Identification */
8638
- public connectorOrderId?: (types.IIdentifier|null);
8895
+ public connectorOrderId?: (string|null);
8639
8896
 
8640
8897
  /** Status Information */
8641
8898
  public status: types.PaymentStatus;
@@ -8650,7 +8907,7 @@ export namespace types {
8650
8907
  public responseHeaders: { [k: string]: string };
8651
8908
 
8652
8909
  /** Reference */
8653
- public merchantOrderId?: (types.IIdentifier|null);
8910
+ public merchantOrderId?: (string|null);
8654
8911
 
8655
8912
  /** Raw Request/Response for debugging */
8656
8913
  public rawConnectorRequest?: (types.ISecretString|null);
@@ -8705,10 +8962,10 @@ export namespace types {
8705
8962
  interface IPaymentServiceRefundRequest {
8706
8963
 
8707
8964
  /** Identification */
8708
- merchantRefundId?: (types.IIdentifier|null);
8965
+ merchantRefundId?: (string|null);
8709
8966
 
8710
8967
  /** PaymentServiceRefundRequest connectorTransactionId */
8711
- connectorTransactionId?: (types.IIdentifier|null);
8968
+ connectorTransactionId?: (string|null);
8712
8969
 
8713
8970
  /** Amount Information */
8714
8971
  paymentAmount?: (number|Long|null);
@@ -8763,10 +9020,10 @@ export namespace types {
8763
9020
  constructor(properties?: types.IPaymentServiceRefundRequest);
8764
9021
 
8765
9022
  /** Identification */
8766
- public merchantRefundId?: (types.IIdentifier|null);
9023
+ public merchantRefundId: string;
8767
9024
 
8768
9025
  /** PaymentServiceRefundRequest connectorTransactionId. */
8769
- public connectorTransactionId?: (types.IIdentifier|null);
9026
+ public connectorTransactionId: string;
8770
9027
 
8771
9028
  /** Amount Information */
8772
9029
  public paymentAmount: (number|Long);
@@ -8854,7 +9111,7 @@ export namespace types {
8854
9111
  interface IRefundResponse {
8855
9112
 
8856
9113
  /** Identification */
8857
- merchantRefundId?: (types.IIdentifier|null);
9114
+ merchantRefundId?: (string|null);
8858
9115
 
8859
9116
  /** Connector's ID for the refund */
8860
9117
  connectorRefundId?: (string|null);
@@ -8905,7 +9162,7 @@ export namespace types {
8905
9162
  refundMetadata?: (types.ISecretString|null);
8906
9163
 
8907
9164
  /** RefundResponse connectorTransactionId */
8908
- connectorTransactionId?: (types.IIdentifier|null);
9165
+ connectorTransactionId?: (string|null);
8909
9166
 
8910
9167
  /** Acquirer reference number for the refund, if provided by the connector */
8911
9168
  acquirerReferenceNumber?: (types.ISecretString|null);
@@ -8930,7 +9187,7 @@ export namespace types {
8930
9187
  constructor(properties?: types.IRefundResponse);
8931
9188
 
8932
9189
  /** Identification */
8933
- public merchantRefundId?: (types.IIdentifier|null);
9190
+ public merchantRefundId?: (string|null);
8934
9191
 
8935
9192
  /** Connector's ID for the refund */
8936
9193
  public connectorRefundId: string;
@@ -8981,7 +9238,7 @@ export namespace types {
8981
9238
  public refundMetadata?: (types.ISecretString|null);
8982
9239
 
8983
9240
  /** RefundResponse connectorTransactionId. */
8984
- public connectorTransactionId?: (types.IIdentifier|null);
9241
+ public connectorTransactionId?: (string|null);
8985
9242
 
8986
9243
  /** Acquirer reference number for the refund, if provided by the connector */
8987
9244
  public acquirerReferenceNumber?: (types.ISecretString|null);
@@ -9039,10 +9296,10 @@ export namespace types {
9039
9296
  interface IPaymentServiceDisputeRequest {
9040
9297
 
9041
9298
  /** Identification */
9042
- merchantDisputeId?: (types.IIdentifier|null);
9299
+ merchantDisputeId?: (string|null);
9043
9300
 
9044
9301
  /** Transaction ID to raise the dispute for */
9045
- connectorTransactionId?: (types.IIdentifier|null);
9302
+ connectorTransactionId?: (string|null);
9046
9303
 
9047
9304
  /** State Information */
9048
9305
  state?: (types.IConnectorState|null);
@@ -9058,10 +9315,10 @@ export namespace types {
9058
9315
  constructor(properties?: types.IPaymentServiceDisputeRequest);
9059
9316
 
9060
9317
  /** Identification */
9061
- public merchantDisputeId?: (types.IIdentifier|null);
9318
+ public merchantDisputeId: string;
9062
9319
 
9063
9320
  /** Transaction ID to raise the dispute for */
9064
- public connectorTransactionId?: (types.IIdentifier|null);
9321
+ public connectorTransactionId: string;
9065
9322
 
9066
9323
  /** State Information */
9067
9324
  public state?: (types.IConnectorState|null);
@@ -9113,7 +9370,7 @@ export namespace types {
9113
9370
  connectorDisputeId?: (string|null);
9114
9371
 
9115
9372
  /** Transaction ID associated with the dispute */
9116
- connectorTransactionId?: (types.IIdentifier|null);
9373
+ connectorTransactionId?: (string|null);
9117
9374
 
9118
9375
  /** Status Information */
9119
9376
  disputeStatus?: (types.DisputeStatus|null);
@@ -9158,7 +9415,7 @@ export namespace types {
9158
9415
  disputeMessage?: (string|null);
9159
9416
 
9160
9417
  /** Reference */
9161
- merchantDisputeId?: (types.IIdentifier|null);
9418
+ merchantDisputeId?: (string|null);
9162
9419
 
9163
9420
  /** Raw Request for debugging */
9164
9421
  rawConnectorRequest?: (types.ISecretString|null);
@@ -9177,7 +9434,7 @@ export namespace types {
9177
9434
  public connectorDisputeId?: (string|null);
9178
9435
 
9179
9436
  /** Transaction ID associated with the dispute */
9180
- public connectorTransactionId?: (types.IIdentifier|null);
9437
+ public connectorTransactionId?: (string|null);
9181
9438
 
9182
9439
  /** Status Information */
9183
9440
  public disputeStatus: types.DisputeStatus;
@@ -9222,7 +9479,7 @@ export namespace types {
9222
9479
  public disputeMessage?: (string|null);
9223
9480
 
9224
9481
  /** Reference */
9225
- public merchantDisputeId?: (types.IIdentifier|null);
9482
+ public merchantDisputeId?: (string|null);
9226
9483
 
9227
9484
  /** Raw Request for debugging */
9228
9485
  public rawConnectorRequest?: (types.ISecretString|null);
@@ -9271,7 +9528,7 @@ export namespace types {
9271
9528
  interface IPaymentServiceSetupRecurringRequest {
9272
9529
 
9273
9530
  /** Identification */
9274
- merchantRecurringPaymentId?: (types.IIdentifier|null);
9531
+ merchantRecurringPaymentId?: (string|null);
9275
9532
 
9276
9533
  /** Mandate Details */
9277
9534
  amount?: (types.IMoney|null);
@@ -9368,6 +9625,9 @@ export namespace types {
9368
9625
 
9369
9626
  /** Testing Data */
9370
9627
  connectorTestingData?: (types.ISecretString|null);
9628
+
9629
+ /** Level 2 / Level 3 data for enhanced payment processing */
9630
+ l2L3Data?: (types.IL2L3Data|null);
9371
9631
  }
9372
9632
 
9373
9633
  /** Request message for setting up a mandate */
@@ -9380,7 +9640,7 @@ export namespace types {
9380
9640
  constructor(properties?: types.IPaymentServiceSetupRecurringRequest);
9381
9641
 
9382
9642
  /** Identification */
9383
- public merchantRecurringPaymentId?: (types.IIdentifier|null);
9643
+ public merchantRecurringPaymentId: string;
9384
9644
 
9385
9645
  /** Mandate Details */
9386
9646
  public amount?: (types.IMoney|null);
@@ -9478,6 +9738,9 @@ export namespace types {
9478
9738
  /** Testing Data */
9479
9739
  public connectorTestingData?: (types.ISecretString|null);
9480
9740
 
9741
+ /** Level 2 / Level 3 data for enhanced payment processing */
9742
+ public l2L3Data?: (types.IL2L3Data|null);
9743
+
9481
9744
  /**
9482
9745
  * Creates a new PaymentServiceSetupRecurringRequest instance using the specified properties.
9483
9746
  * @param [properties] Properties to set
@@ -9522,7 +9785,7 @@ export namespace types {
9522
9785
  interface IPaymentServiceSetupRecurringResponse {
9523
9786
 
9524
9787
  /** Identification */
9525
- connectorRegistrationId?: (types.IIdentifier|null);
9788
+ connectorRegistrationId?: (string|null);
9526
9789
 
9527
9790
  /** Status Information */
9528
9791
  status?: (types.PaymentStatus|null);
@@ -9546,7 +9809,7 @@ export namespace types {
9546
9809
  networkTransactionId?: (string|null);
9547
9810
 
9548
9811
  /** PaymentServiceSetupRecurringResponse merchantRecurringPaymentId */
9549
- merchantRecurringPaymentId?: (types.IIdentifier|null);
9812
+ merchantRecurringPaymentId?: (string|null);
9550
9813
 
9551
9814
  /** Various data regarding the response from connector */
9552
9815
  connectorResponse?: (types.IConnectorResponseData|null);
@@ -9577,7 +9840,7 @@ export namespace types {
9577
9840
  constructor(properties?: types.IPaymentServiceSetupRecurringResponse);
9578
9841
 
9579
9842
  /** Identification */
9580
- public connectorRegistrationId?: (types.IIdentifier|null);
9843
+ public connectorRegistrationId?: (string|null);
9581
9844
 
9582
9845
  /** Status Information */
9583
9846
  public status: types.PaymentStatus;
@@ -9601,7 +9864,7 @@ export namespace types {
9601
9864
  public networkTransactionId?: (string|null);
9602
9865
 
9603
9866
  /** PaymentServiceSetupRecurringResponse merchantRecurringPaymentId. */
9604
- public merchantRecurringPaymentId?: (types.IIdentifier|null);
9867
+ public merchantRecurringPaymentId?: (string|null);
9605
9868
 
9606
9869
  /** Various data regarding the response from connector */
9607
9870
  public connectorResponse?: (types.IConnectorResponseData|null);
@@ -9665,7 +9928,7 @@ export namespace types {
9665
9928
  interface IRecurringPaymentServiceChargeRequest {
9666
9929
 
9667
9930
  /** Identification */
9668
- merchantChargeId?: (types.IIdentifier|null);
9931
+ merchantChargeId?: (string|null);
9669
9932
 
9670
9933
  /** Mandate Information (for MIT) */
9671
9934
  mandateReferenceId?: (types.IMandateReference|null);
@@ -9750,6 +10013,12 @@ export namespace types {
9750
10013
 
9751
10014
  /** Testing Data */
9752
10015
  connectorTestingData?: (types.ISecretString|null);
10016
+
10017
+ /** Customer Information */
10018
+ customer?: (types.ICustomer|null);
10019
+
10020
+ /** Level 2 / Level 3 data for enhanced payment processing */
10021
+ l2L3Data?: (types.IL2L3Data|null);
9753
10022
  }
9754
10023
 
9755
10024
  /** Request message for repeat payment (MIT - Merchant Initiated Transaction) */
@@ -9762,7 +10031,7 @@ export namespace types {
9762
10031
  constructor(properties?: types.IRecurringPaymentServiceChargeRequest);
9763
10032
 
9764
10033
  /** Identification */
9765
- public merchantChargeId?: (types.IIdentifier|null);
10034
+ public merchantChargeId?: (string|null);
9766
10035
 
9767
10036
  /** Mandate Information (for MIT) */
9768
10037
  public mandateReferenceId?: (types.IMandateReference|null);
@@ -9848,6 +10117,12 @@ export namespace types {
9848
10117
  /** Testing Data */
9849
10118
  public connectorTestingData?: (types.ISecretString|null);
9850
10119
 
10120
+ /** Customer Information */
10121
+ public customer?: (types.ICustomer|null);
10122
+
10123
+ /** Level 2 / Level 3 data for enhanced payment processing */
10124
+ public l2L3Data?: (types.IL2L3Data|null);
10125
+
9851
10126
  /**
9852
10127
  * Creates a new RecurringPaymentServiceChargeRequest instance using the specified properties.
9853
10128
  * @param [properties] Properties to set
@@ -9892,7 +10167,7 @@ export namespace types {
9892
10167
  interface IRecurringPaymentServiceChargeResponse {
9893
10168
 
9894
10169
  /** Identification */
9895
- connectorTransactionId?: (types.IIdentifier|null);
10170
+ connectorTransactionId?: (string|null);
9896
10171
 
9897
10172
  /** Status Information */
9898
10173
  status?: (types.PaymentStatus|null);
@@ -9913,7 +10188,7 @@ export namespace types {
9913
10188
  networkTransactionId?: (string|null);
9914
10189
 
9915
10190
  /** RecurringPaymentServiceChargeResponse merchantChargeId */
9916
- merchantChargeId?: (types.IIdentifier|null);
10191
+ merchantChargeId?: (string|null);
9917
10192
 
9918
10193
  /** RecurringPaymentServiceChargeResponse mandateReference */
9919
10194
  mandateReference?: (types.IMandateReference|null);
@@ -9947,7 +10222,7 @@ export namespace types {
9947
10222
  constructor(properties?: types.IRecurringPaymentServiceChargeResponse);
9948
10223
 
9949
10224
  /** Identification */
9950
- public connectorTransactionId?: (types.IIdentifier|null);
10225
+ public connectorTransactionId?: (string|null);
9951
10226
 
9952
10227
  /** Status Information */
9953
10228
  public status: types.PaymentStatus;
@@ -9968,7 +10243,7 @@ export namespace types {
9968
10243
  public networkTransactionId?: (string|null);
9969
10244
 
9970
10245
  /** RecurringPaymentServiceChargeResponse merchantChargeId. */
9971
- public merchantChargeId?: (types.IIdentifier|null);
10246
+ public merchantChargeId?: (string|null);
9972
10247
 
9973
10248
  /** RecurringPaymentServiceChargeResponse mandateReference. */
9974
10249
  public mandateReference?: (types.IMandateReference|null);
@@ -10035,7 +10310,7 @@ export namespace types {
10035
10310
  interface IRecurringPaymentServiceRevokeRequest {
10036
10311
 
10037
10312
  /** Identification */
10038
- merchantRevokeId?: (types.IIdentifier|null);
10313
+ merchantRevokeId?: (string|null);
10039
10314
 
10040
10315
  /** Mandate Details */
10041
10316
  mandateId?: (string|null);
@@ -10054,7 +10329,7 @@ export namespace types {
10054
10329
  constructor(properties?: types.IRecurringPaymentServiceRevokeRequest);
10055
10330
 
10056
10331
  /** Identification */
10057
- public merchantRevokeId?: (types.IIdentifier|null);
10332
+ public merchantRevokeId: string;
10058
10333
 
10059
10334
  /** Mandate Details */
10060
10335
  public mandateId: string;
@@ -10121,7 +10396,7 @@ export namespace types {
10121
10396
  networkTransactionId?: (string|null);
10122
10397
 
10123
10398
  /** RecurringPaymentServiceRevokeResponse merchantRevokeId */
10124
- merchantRevokeId?: (types.IIdentifier|null);
10399
+ merchantRevokeId?: (string|null);
10125
10400
 
10126
10401
  /** Raw Response/Request for debugging */
10127
10402
  rawConnectorResponse?: (types.ISecretString|null);
@@ -10155,7 +10430,7 @@ export namespace types {
10155
10430
  public networkTransactionId?: (string|null);
10156
10431
 
10157
10432
  /** RecurringPaymentServiceRevokeResponse merchantRevokeId. */
10158
- public merchantRevokeId?: (types.IIdentifier|null);
10433
+ public merchantRevokeId?: (string|null);
10159
10434
 
10160
10435
  /** Raw Response/Request for debugging */
10161
10436
  public rawConnectorResponse?: (types.ISecretString|null);
@@ -10207,7 +10482,7 @@ export namespace types {
10207
10482
  interface IPaymentMethodAuthenticationServicePreAuthenticateRequest {
10208
10483
 
10209
10484
  /** Payment Identification */
10210
- merchantOrderId?: (types.IIdentifier|null);
10485
+ merchantOrderId?: (string|null);
10211
10486
 
10212
10487
  /** Amount Information */
10213
10488
  amount?: (types.IMoney|null);
@@ -10259,7 +10534,7 @@ export namespace types {
10259
10534
  constructor(properties?: types.IPaymentMethodAuthenticationServicePreAuthenticateRequest);
10260
10535
 
10261
10536
  /** Payment Identification */
10262
- public merchantOrderId?: (types.IIdentifier|null);
10537
+ public merchantOrderId: string;
10263
10538
 
10264
10539
  /** Amount Information */
10265
10540
  public amount?: (types.IMoney|null);
@@ -10344,7 +10619,7 @@ export namespace types {
10344
10619
  interface IPaymentMethodAuthenticationServicePreAuthenticateResponse {
10345
10620
 
10346
10621
  /** Identification */
10347
- connectorTransactionId?: (types.IIdentifier|null);
10622
+ connectorTransactionId?: (string|null);
10348
10623
 
10349
10624
  /** Status Information */
10350
10625
  status?: (types.PaymentStatus|null);
@@ -10365,7 +10640,7 @@ export namespace types {
10365
10640
  networkTransactionId?: (string|null);
10366
10641
 
10367
10642
  /** PaymentMethodAuthenticationServicePreAuthenticateResponse merchantOrderId */
10368
- merchantOrderId?: (types.IIdentifier|null);
10643
+ merchantOrderId?: (string|null);
10369
10644
 
10370
10645
  /** Connector-specific metadata for the transaction */
10371
10646
  connectorFeatureData?: (types.ISecretString|null);
@@ -10390,7 +10665,7 @@ export namespace types {
10390
10665
  constructor(properties?: types.IPaymentMethodAuthenticationServicePreAuthenticateResponse);
10391
10666
 
10392
10667
  /** Identification */
10393
- public connectorTransactionId?: (types.IIdentifier|null);
10668
+ public connectorTransactionId?: (string|null);
10394
10669
 
10395
10670
  /** Status Information */
10396
10671
  public status: types.PaymentStatus;
@@ -10411,7 +10686,7 @@ export namespace types {
10411
10686
  public networkTransactionId?: (string|null);
10412
10687
 
10413
10688
  /** PaymentMethodAuthenticationServicePreAuthenticateResponse merchantOrderId. */
10414
- public merchantOrderId?: (types.IIdentifier|null);
10689
+ public merchantOrderId?: (string|null);
10415
10690
 
10416
10691
  /** Connector-specific metadata for the transaction */
10417
10692
  public connectorFeatureData?: (types.ISecretString|null);
@@ -10469,7 +10744,7 @@ export namespace types {
10469
10744
  interface IPaymentMethodAuthenticationServiceAuthenticateRequest {
10470
10745
 
10471
10746
  /** Payment Identification */
10472
- merchantOrderId?: (types.IIdentifier|null);
10747
+ merchantOrderId?: (string|null);
10473
10748
 
10474
10749
  /** Amount Information */
10475
10750
  amount?: (types.IMoney|null);
@@ -10521,7 +10796,7 @@ export namespace types {
10521
10796
  constructor(properties?: types.IPaymentMethodAuthenticationServiceAuthenticateRequest);
10522
10797
 
10523
10798
  /** Payment Identification */
10524
- public merchantOrderId?: (types.IIdentifier|null);
10799
+ public merchantOrderId: string;
10525
10800
 
10526
10801
  /** Amount Information */
10527
10802
  public amount?: (types.IMoney|null);
@@ -10606,7 +10881,7 @@ export namespace types {
10606
10881
  interface IPaymentMethodAuthenticationServiceAuthenticateResponse {
10607
10882
 
10608
10883
  /** Identification */
10609
- connectorTransactionId?: (types.IIdentifier|null);
10884
+ connectorTransactionId?: (string|null);
10610
10885
 
10611
10886
  /** Status Information */
10612
10887
  status?: (types.PaymentStatus|null);
@@ -10627,7 +10902,7 @@ export namespace types {
10627
10902
  networkTransactionId?: (string|null);
10628
10903
 
10629
10904
  /** PaymentMethodAuthenticationServiceAuthenticateResponse merchantOrderId */
10630
- merchantOrderId?: (types.IIdentifier|null);
10905
+ merchantOrderId?: (string|null);
10631
10906
 
10632
10907
  /** Authentication Results */
10633
10908
  authenticationData?: (types.IAuthenticationData|null);
@@ -10652,7 +10927,7 @@ export namespace types {
10652
10927
  constructor(properties?: types.IPaymentMethodAuthenticationServiceAuthenticateResponse);
10653
10928
 
10654
10929
  /** Identification */
10655
- public connectorTransactionId?: (types.IIdentifier|null);
10930
+ public connectorTransactionId?: (string|null);
10656
10931
 
10657
10932
  /** Status Information */
10658
10933
  public status: types.PaymentStatus;
@@ -10673,7 +10948,7 @@ export namespace types {
10673
10948
  public networkTransactionId?: (string|null);
10674
10949
 
10675
10950
  /** PaymentMethodAuthenticationServiceAuthenticateResponse merchantOrderId. */
10676
- public merchantOrderId?: (types.IIdentifier|null);
10951
+ public merchantOrderId?: (string|null);
10677
10952
 
10678
10953
  /** Authentication Results */
10679
10954
  public authenticationData?: (types.IAuthenticationData|null);
@@ -10731,7 +11006,7 @@ export namespace types {
10731
11006
  interface IPaymentMethodAuthenticationServicePostAuthenticateRequest {
10732
11007
 
10733
11008
  /** Payment Identification */
10734
- merchantOrderId?: (types.IIdentifier|null);
11009
+ merchantOrderId?: (string|null);
10735
11010
 
10736
11011
  /** Amount Information */
10737
11012
  amount?: (types.IMoney|null);
@@ -10783,7 +11058,7 @@ export namespace types {
10783
11058
  constructor(properties?: types.IPaymentMethodAuthenticationServicePostAuthenticateRequest);
10784
11059
 
10785
11060
  /** Payment Identification */
10786
- public merchantOrderId?: (types.IIdentifier|null);
11061
+ public merchantOrderId: string;
10787
11062
 
10788
11063
  /** Amount Information */
10789
11064
  public amount?: (types.IMoney|null);
@@ -10868,7 +11143,7 @@ export namespace types {
10868
11143
  interface IPaymentMethodAuthenticationServicePostAuthenticateResponse {
10869
11144
 
10870
11145
  /** Identification */
10871
- connectorTransactionId?: (types.IIdentifier|null);
11146
+ connectorTransactionId?: (string|null);
10872
11147
 
10873
11148
  /** Status Information */
10874
11149
  status?: (types.PaymentStatus|null);
@@ -10889,7 +11164,7 @@ export namespace types {
10889
11164
  networkTransactionId?: (string|null);
10890
11165
 
10891
11166
  /** PaymentMethodAuthenticationServicePostAuthenticateResponse merchantOrderId */
10892
- merchantOrderId?: (types.IIdentifier|null);
11167
+ merchantOrderId?: (string|null);
10893
11168
 
10894
11169
  /** Authentication Results */
10895
11170
  authenticationData?: (types.IAuthenticationData|null);
@@ -10917,7 +11192,7 @@ export namespace types {
10917
11192
  constructor(properties?: types.IPaymentMethodAuthenticationServicePostAuthenticateResponse);
10918
11193
 
10919
11194
  /** Identification */
10920
- public connectorTransactionId?: (types.IIdentifier|null);
11195
+ public connectorTransactionId?: (string|null);
10921
11196
 
10922
11197
  /** Status Information */
10923
11198
  public status: types.PaymentStatus;
@@ -10938,7 +11213,7 @@ export namespace types {
10938
11213
  public networkTransactionId?: (string|null);
10939
11214
 
10940
11215
  /** PaymentMethodAuthenticationServicePostAuthenticateResponse merchantOrderId. */
10941
- public merchantOrderId?: (types.IIdentifier|null);
11216
+ public merchantOrderId?: (string|null);
10942
11217
 
10943
11218
  /** Authentication Results */
10944
11219
  public authenticationData?: (types.IAuthenticationData|null);
@@ -10999,10 +11274,10 @@ export namespace types {
10999
11274
  interface IPaymentServiceIncrementalAuthorizationRequest {
11000
11275
 
11001
11276
  /** Identification */
11002
- merchantAuthorizationId?: (types.IIdentifier|null);
11277
+ merchantAuthorizationId?: (string|null);
11003
11278
 
11004
11279
  /** PaymentServiceIncrementalAuthorizationRequest connectorTransactionId */
11005
- connectorTransactionId?: (types.IIdentifier|null);
11280
+ connectorTransactionId?: (string|null);
11006
11281
 
11007
11282
  /** Amount Information */
11008
11283
  amount?: (types.IMoney|null);
@@ -11027,10 +11302,10 @@ export namespace types {
11027
11302
  constructor(properties?: types.IPaymentServiceIncrementalAuthorizationRequest);
11028
11303
 
11029
11304
  /** Identification */
11030
- public merchantAuthorizationId?: (types.IIdentifier|null);
11305
+ public merchantAuthorizationId: string;
11031
11306
 
11032
11307
  /** PaymentServiceIncrementalAuthorizationRequest connectorTransactionId. */
11033
- public connectorTransactionId?: (types.IIdentifier|null);
11308
+ public connectorTransactionId: string;
11034
11309
 
11035
11310
  /** Amount Information */
11036
11311
  public amount?: (types.IMoney|null);
@@ -11177,7 +11452,7 @@ export namespace types {
11177
11452
  interface IEventServiceHandleRequest {
11178
11453
 
11179
11454
  /** Identification */
11180
- merchantEventId?: (types.IIdentifier|null);
11455
+ merchantEventId?: (string|null);
11181
11456
 
11182
11457
  /** Request Details */
11183
11458
  requestDetails?: (types.IRequestDetails|null);
@@ -11199,7 +11474,7 @@ export namespace types {
11199
11474
  constructor(properties?: types.IEventServiceHandleRequest);
11200
11475
 
11201
11476
  /** Identification */
11202
- public merchantEventId?: (types.IIdentifier|null);
11477
+ public merchantEventId: string;
11203
11478
 
11204
11479
  /** Request Details */
11205
11480
  public requestDetails?: (types.IRequestDetails|null);
@@ -11261,7 +11536,7 @@ export namespace types {
11261
11536
  interface IPaymentServiceVerifyRedirectResponseRequest {
11262
11537
 
11263
11538
  /** Identification */
11264
- merchantOrderId?: (types.IIdentifier|null);
11539
+ merchantOrderId?: (string|null);
11265
11540
 
11266
11541
  /** Request Details */
11267
11542
  requestDetails?: (types.IRequestDetails|null);
@@ -11280,7 +11555,7 @@ export namespace types {
11280
11555
  constructor(properties?: types.IPaymentServiceVerifyRedirectResponseRequest);
11281
11556
 
11282
11557
  /** Identification */
11283
- public merchantOrderId?: (types.IIdentifier|null);
11558
+ public merchantOrderId: string;
11284
11559
 
11285
11560
  /** Request Details */
11286
11561
  public requestDetails?: (types.IRequestDetails|null);
@@ -11335,13 +11610,13 @@ export namespace types {
11335
11610
  sourceVerified?: (boolean|null);
11336
11611
 
11337
11612
  /** Identification */
11338
- connectorTransactionId?: (types.IIdentifier|null);
11613
+ connectorTransactionId?: (string|null);
11339
11614
 
11340
11615
  /** Response Amount Information */
11341
11616
  responseAmount?: (types.IMoney|null);
11342
11617
 
11343
11618
  /** Reference */
11344
- merchantOrderId?: (types.IIdentifier|null);
11619
+ merchantOrderId?: (string|null);
11345
11620
 
11346
11621
  /** Status Information */
11347
11622
  status?: (types.PaymentStatus|null);
@@ -11366,13 +11641,13 @@ export namespace types {
11366
11641
  public sourceVerified: boolean;
11367
11642
 
11368
11643
  /** Identification */
11369
- public connectorTransactionId?: (types.IIdentifier|null);
11644
+ public connectorTransactionId?: (string|null);
11370
11645
 
11371
11646
  /** Response Amount Information */
11372
11647
  public responseAmount?: (types.IMoney|null);
11373
11648
 
11374
11649
  /** Reference */
11375
- public merchantOrderId?: (types.IIdentifier|null);
11650
+ public merchantOrderId?: (string|null);
11376
11651
 
11377
11652
  /** Status Information */
11378
11653
  public status?: (types.PaymentStatus|null);
@@ -11427,10 +11702,10 @@ export namespace types {
11427
11702
  interface IRefundServiceGetRequest {
11428
11703
 
11429
11704
  /** Identification */
11430
- merchantRefundId?: (types.IIdentifier|null);
11705
+ merchantRefundId?: (string|null);
11431
11706
 
11432
11707
  /** RefundServiceGetRequest connectorTransactionId */
11433
- connectorTransactionId?: (types.IIdentifier|null);
11708
+ connectorTransactionId?: (string|null);
11434
11709
 
11435
11710
  /** RefundServiceGetRequest refundId */
11436
11711
  refundId?: (string|null);
@@ -11467,10 +11742,10 @@ export namespace types {
11467
11742
  constructor(properties?: types.IRefundServiceGetRequest);
11468
11743
 
11469
11744
  /** Identification */
11470
- public merchantRefundId?: (types.IIdentifier|null);
11745
+ public merchantRefundId?: (string|null);
11471
11746
 
11472
11747
  /** RefundServiceGetRequest connectorTransactionId. */
11473
- public connectorTransactionId?: (types.IIdentifier|null);
11748
+ public connectorTransactionId: string;
11474
11749
 
11475
11750
  /** RefundServiceGetRequest refundId. */
11476
11751
  public refundId: string;
@@ -11540,10 +11815,10 @@ export namespace types {
11540
11815
  interface IDisputeServiceSubmitEvidenceRequest {
11541
11816
 
11542
11817
  /** Identification */
11543
- merchantDisputeId?: (types.IIdentifier|null);
11818
+ merchantDisputeId?: (string|null);
11544
11819
 
11545
11820
  /** DisputeServiceSubmitEvidenceRequest connectorTransactionId */
11546
- connectorTransactionId?: (types.IIdentifier|null);
11821
+ connectorTransactionId?: (string|null);
11547
11822
 
11548
11823
  /** DisputeServiceSubmitEvidenceRequest disputeId */
11549
11824
  disputeId?: (string|null);
@@ -11568,10 +11843,10 @@ export namespace types {
11568
11843
  constructor(properties?: types.IDisputeServiceSubmitEvidenceRequest);
11569
11844
 
11570
11845
  /** Identification */
11571
- public merchantDisputeId?: (types.IIdentifier|null);
11846
+ public merchantDisputeId?: (string|null);
11572
11847
 
11573
11848
  /** DisputeServiceSubmitEvidenceRequest connectorTransactionId. */
11574
- public connectorTransactionId?: (types.IIdentifier|null);
11849
+ public connectorTransactionId?: (string|null);
11575
11850
 
11576
11851
  /** DisputeServiceSubmitEvidenceRequest disputeId. */
11577
11852
  public disputeId: string;
@@ -11650,7 +11925,7 @@ export namespace types {
11650
11925
  responseHeaders?: ({ [k: string]: string }|null);
11651
11926
 
11652
11927
  /** Reference */
11653
- merchantDisputeId?: (types.IIdentifier|null);
11928
+ merchantDisputeId?: (string|null);
11654
11929
 
11655
11930
  /** Raw Request for debugging */
11656
11931
  rawConnectorRequest?: (types.ISecretString|null);
@@ -11687,7 +11962,7 @@ export namespace types {
11687
11962
  public responseHeaders: { [k: string]: string };
11688
11963
 
11689
11964
  /** Reference */
11690
- public merchantDisputeId?: (types.IIdentifier|null);
11965
+ public merchantDisputeId?: (string|null);
11691
11966
 
11692
11967
  /** Raw Request for debugging */
11693
11968
  public rawConnectorRequest?: (types.ISecretString|null);
@@ -11736,7 +12011,7 @@ export namespace types {
11736
12011
  interface IDisputeServiceGetRequest {
11737
12012
 
11738
12013
  /** Identification */
11739
- merchantDisputeId?: (types.IIdentifier|null);
12014
+ merchantDisputeId?: (string|null);
11740
12015
 
11741
12016
  /** DisputeServiceGetRequest disputeId */
11742
12017
  disputeId?: (string|null);
@@ -11755,7 +12030,7 @@ export namespace types {
11755
12030
  constructor(properties?: types.IDisputeServiceGetRequest);
11756
12031
 
11757
12032
  /** Identification */
11758
- public merchantDisputeId?: (types.IIdentifier|null);
12033
+ public merchantDisputeId: string;
11759
12034
 
11760
12035
  /** DisputeServiceGetRequest disputeId. */
11761
12036
  public disputeId?: (string|null);
@@ -11807,10 +12082,10 @@ export namespace types {
11807
12082
  interface IDisputeServiceDefendRequest {
11808
12083
 
11809
12084
  /** Identification */
11810
- merchantDisputeId?: (types.IIdentifier|null);
12085
+ merchantDisputeId?: (string|null);
11811
12086
 
11812
12087
  /** DisputeServiceDefendRequest connectorTransactionId */
11813
- connectorTransactionId?: (types.IIdentifier|null);
12088
+ connectorTransactionId?: (string|null);
11814
12089
 
11815
12090
  /** DisputeServiceDefendRequest disputeId */
11816
12091
  disputeId?: (string|null);
@@ -11829,10 +12104,10 @@ export namespace types {
11829
12104
  constructor(properties?: types.IDisputeServiceDefendRequest);
11830
12105
 
11831
12106
  /** Identification */
11832
- public merchantDisputeId?: (types.IIdentifier|null);
12107
+ public merchantDisputeId: string;
11833
12108
 
11834
12109
  /** DisputeServiceDefendRequest connectorTransactionId. */
11835
- public connectorTransactionId?: (types.IIdentifier|null);
12110
+ public connectorTransactionId: string;
11836
12111
 
11837
12112
  /** DisputeServiceDefendRequest disputeId. */
11838
12113
  public disputeId: string;
@@ -11902,7 +12177,7 @@ export namespace types {
11902
12177
  responseHeaders?: ({ [k: string]: string }|null);
11903
12178
 
11904
12179
  /** Reference */
11905
- merchantDisputeId?: (types.IIdentifier|null);
12180
+ merchantDisputeId?: (string|null);
11906
12181
 
11907
12182
  /** Raw Request for debugging */
11908
12183
  rawConnectorRequest?: (types.ISecretString|null);
@@ -11936,7 +12211,7 @@ export namespace types {
11936
12211
  public responseHeaders: { [k: string]: string };
11937
12212
 
11938
12213
  /** Reference */
11939
- public merchantDisputeId?: (types.IIdentifier|null);
12214
+ public merchantDisputeId?: (string|null);
11940
12215
 
11941
12216
  /** Raw Request for debugging */
11942
12217
  public rawConnectorRequest?: (types.ISecretString|null);
@@ -11985,10 +12260,10 @@ export namespace types {
11985
12260
  interface IDisputeServiceAcceptRequest {
11986
12261
 
11987
12262
  /** Identification */
11988
- merchantDisputeId?: (types.IIdentifier|null);
12263
+ merchantDisputeId?: (string|null);
11989
12264
 
11990
12265
  /** DisputeServiceAcceptRequest connectorTransactionId */
11991
- connectorTransactionId?: (types.IIdentifier|null);
12266
+ connectorTransactionId?: (string|null);
11992
12267
 
11993
12268
  /** DisputeServiceAcceptRequest disputeId */
11994
12269
  disputeId?: (string|null);
@@ -12004,10 +12279,10 @@ export namespace types {
12004
12279
  constructor(properties?: types.IDisputeServiceAcceptRequest);
12005
12280
 
12006
12281
  /** Identification */
12007
- public merchantDisputeId?: (types.IIdentifier|null);
12282
+ public merchantDisputeId: string;
12008
12283
 
12009
12284
  /** DisputeServiceAcceptRequest connectorTransactionId. */
12010
- public connectorTransactionId?: (types.IIdentifier|null);
12285
+ public connectorTransactionId: string;
12011
12286
 
12012
12287
  /** DisputeServiceAcceptRequest disputeId. */
12013
12288
  public disputeId: string;
@@ -12074,7 +12349,7 @@ export namespace types {
12074
12349
  responseHeaders?: ({ [k: string]: string }|null);
12075
12350
 
12076
12351
  /** Reference */
12077
- merchantDisputeId?: (types.IIdentifier|null);
12352
+ merchantDisputeId?: (string|null);
12078
12353
 
12079
12354
  /** Raw Request for debugging */
12080
12355
  rawConnectorRequest?: (types.ISecretString|null);
@@ -12108,7 +12383,7 @@ export namespace types {
12108
12383
  public responseHeaders: { [k: string]: string };
12109
12384
 
12110
12385
  /** Reference */
12111
- public merchantDisputeId?: (types.IIdentifier|null);
12386
+ public merchantDisputeId?: (string|null);
12112
12387
 
12113
12388
  /** Raw Request for debugging */
12114
12389
  public rawConnectorRequest?: (types.ISecretString|null);
@@ -12157,7 +12432,7 @@ export namespace types {
12157
12432
  interface IPaymentMethodServiceTokenizeRequest {
12158
12433
 
12159
12434
  /** Identification */
12160
- merchantPaymentMethodId?: (types.IIdentifier|null);
12435
+ merchantPaymentMethodId?: (string|null);
12161
12436
 
12162
12437
  /** Payment Information */
12163
12438
  amount?: (types.IMoney|null);
@@ -12194,7 +12469,7 @@ export namespace types {
12194
12469
  constructor(properties?: types.IPaymentMethodServiceTokenizeRequest);
12195
12470
 
12196
12471
  /** Identification */
12197
- public merchantPaymentMethodId?: (types.IIdentifier|null);
12472
+ public merchantPaymentMethodId: string;
12198
12473
 
12199
12474
  /** Payment Information */
12200
12475
  public amount?: (types.IMoney|null);
@@ -12276,7 +12551,7 @@ export namespace types {
12276
12551
  responseHeaders?: ({ [k: string]: string }|null);
12277
12552
 
12278
12553
  /** Reference */
12279
- merchantPaymentMethodId?: (types.IIdentifier|null);
12554
+ merchantPaymentMethodId?: (string|null);
12280
12555
 
12281
12556
  /** State Information */
12282
12557
  state?: (types.IConnectorState|null);
@@ -12304,7 +12579,7 @@ export namespace types {
12304
12579
  public responseHeaders: { [k: string]: string };
12305
12580
 
12306
12581
  /** Reference */
12307
- public merchantPaymentMethodId?: (types.IIdentifier|null);
12582
+ public merchantPaymentMethodId?: (string|null);
12308
12583
 
12309
12584
  /** State Information */
12310
12585
  public state?: (types.IConnectorState|null);
@@ -12353,7 +12628,7 @@ export namespace types {
12353
12628
  interface IPaymentMethodServiceGetRequest {
12354
12629
 
12355
12630
  /** Identification */
12356
- merchantPaymentMethodId?: (types.IIdentifier|null);
12631
+ merchantPaymentMethodId?: (string|null);
12357
12632
 
12358
12633
  /** Payment Method Information */
12359
12634
  paymentMethodToken?: (string|null);
@@ -12372,7 +12647,7 @@ export namespace types {
12372
12647
  constructor(properties?: types.IPaymentMethodServiceGetRequest);
12373
12648
 
12374
12649
  /** Identification */
12375
- public merchantPaymentMethodId?: (types.IIdentifier|null);
12650
+ public merchantPaymentMethodId: string;
12376
12651
 
12377
12652
  /** Payment Method Information */
12378
12653
  public paymentMethodToken: string;
@@ -12439,7 +12714,7 @@ export namespace types {
12439
12714
  responseHeaders?: ({ [k: string]: string }|null);
12440
12715
 
12441
12716
  /** Reference */
12442
- merchantPaymentMethodId?: (types.IIdentifier|null);
12717
+ merchantPaymentMethodId?: (string|null);
12443
12718
  }
12444
12719
 
12445
12720
  /** Response message for getting a payment method */
@@ -12467,7 +12742,7 @@ export namespace types {
12467
12742
  public responseHeaders: { [k: string]: string };
12468
12743
 
12469
12744
  /** Reference */
12470
- public merchantPaymentMethodId?: (types.IIdentifier|null);
12745
+ public merchantPaymentMethodId?: (string|null);
12471
12746
 
12472
12747
  /**
12473
12748
  * Creates a new PaymentMethodServiceGetResponse instance using the specified properties.
@@ -12513,7 +12788,7 @@ export namespace types {
12513
12788
  interface ICustomerServiceCreateRequest {
12514
12789
 
12515
12790
  /** Identification */
12516
- merchantCustomerId?: (types.IIdentifier|null);
12791
+ merchantCustomerId?: (string|null);
12517
12792
 
12518
12793
  /** Customer Information */
12519
12794
  customerName?: (string|null);
@@ -12547,7 +12822,7 @@ export namespace types {
12547
12822
  constructor(properties?: types.ICustomerServiceCreateRequest);
12548
12823
 
12549
12824
  /** Identification */
12550
- public merchantCustomerId?: (types.IIdentifier|null);
12825
+ public merchantCustomerId?: (string|null);
12551
12826
 
12552
12827
  /** Customer Information */
12553
12828
  public customerName?: (string|null);
@@ -12614,7 +12889,7 @@ export namespace types {
12614
12889
  interface ICustomerServiceCreateResponse {
12615
12890
 
12616
12891
  /** Reference */
12617
- merchantCustomerId?: (types.IIdentifier|null);
12892
+ merchantCustomerId?: (string|null);
12618
12893
 
12619
12894
  /** Customer Information */
12620
12895
  connectorCustomerId?: (string|null);
@@ -12639,7 +12914,7 @@ export namespace types {
12639
12914
  constructor(properties?: types.ICustomerServiceCreateResponse);
12640
12915
 
12641
12916
  /** Reference */
12642
- public merchantCustomerId?: (types.IIdentifier|null);
12917
+ public merchantCustomerId?: (string|null);
12643
12918
 
12644
12919
  /** Customer Information */
12645
12920
  public connectorCustomerId: string;
@@ -12697,7 +12972,7 @@ export namespace types {
12697
12972
  interface ICustomerServiceGetRequest {
12698
12973
 
12699
12974
  /** Identification */
12700
- merchantCustomerId?: (types.IIdentifier|null);
12975
+ merchantCustomerId?: (string|null);
12701
12976
 
12702
12977
  /** Customer Information */
12703
12978
  connectorCustomerId?: (string|null);
@@ -12713,7 +12988,7 @@ export namespace types {
12713
12988
  constructor(properties?: types.ICustomerServiceGetRequest);
12714
12989
 
12715
12990
  /** Identification */
12716
- public merchantCustomerId?: (types.IIdentifier|null);
12991
+ public merchantCustomerId: string;
12717
12992
 
12718
12993
  /** Customer Information */
12719
12994
  public connectorCustomerId: string;
@@ -12774,7 +13049,7 @@ export namespace types {
12774
13049
  responseHeaders?: ({ [k: string]: string }|null);
12775
13050
 
12776
13051
  /** Reference */
12777
- merchantCustomerId?: (types.IIdentifier|null);
13052
+ merchantCustomerId?: (string|null);
12778
13053
  }
12779
13054
 
12780
13055
  /** Response message for getting a customer */
@@ -12799,7 +13074,7 @@ export namespace types {
12799
13074
  public responseHeaders: { [k: string]: string };
12800
13075
 
12801
13076
  /** Reference */
12802
- public merchantCustomerId?: (types.IIdentifier|null);
13077
+ public merchantCustomerId?: (string|null);
12803
13078
 
12804
13079
  /**
12805
13080
  * Creates a new CustomerServiceGetResponse instance using the specified properties.
@@ -12845,7 +13120,7 @@ export namespace types {
12845
13120
  interface ICustomerServiceUpdateRequest {
12846
13121
 
12847
13122
  /** Identification */
12848
- merchantCustomerId?: (types.IIdentifier|null);
13123
+ merchantCustomerId?: (string|null);
12849
13124
 
12850
13125
  /** Customer Information */
12851
13126
  connectorCustomerId?: (string|null);
@@ -12879,7 +13154,7 @@ export namespace types {
12879
13154
  constructor(properties?: types.ICustomerServiceUpdateRequest);
12880
13155
 
12881
13156
  /** Identification */
12882
- public merchantCustomerId?: (types.IIdentifier|null);
13157
+ public merchantCustomerId: string;
12883
13158
 
12884
13159
  /** Customer Information */
12885
13160
  public connectorCustomerId: string;
@@ -12958,7 +13233,7 @@ export namespace types {
12958
13233
  responseHeaders?: ({ [k: string]: string }|null);
12959
13234
 
12960
13235
  /** Reference */
12961
- merchantCustomerId?: (types.IIdentifier|null);
13236
+ merchantCustomerId?: (string|null);
12962
13237
  }
12963
13238
 
12964
13239
  /** Response message for updating a customer */
@@ -12983,7 +13258,7 @@ export namespace types {
12983
13258
  public responseHeaders: { [k: string]: string };
12984
13259
 
12985
13260
  /** Reference */
12986
- public merchantCustomerId?: (types.IIdentifier|null);
13261
+ public merchantCustomerId?: (string|null);
12987
13262
 
12988
13263
  /**
12989
13264
  * Creates a new CustomerServiceUpdateResponse instance using the specified properties.
@@ -13029,7 +13304,7 @@ export namespace types {
13029
13304
  interface ICustomerServiceDeleteRequest {
13030
13305
 
13031
13306
  /** Identification */
13032
- merchantCustomerId?: (types.IIdentifier|null);
13307
+ merchantCustomerId?: (string|null);
13033
13308
 
13034
13309
  /** Customer Information */
13035
13310
  connectorCustomerId?: (string|null);
@@ -13045,7 +13320,7 @@ export namespace types {
13045
13320
  constructor(properties?: types.ICustomerServiceDeleteRequest);
13046
13321
 
13047
13322
  /** Identification */
13048
- public merchantCustomerId?: (types.IIdentifier|null);
13323
+ public merchantCustomerId: string;
13049
13324
 
13050
13325
  /** Customer Information */
13051
13326
  public connectorCustomerId: string;
@@ -13103,7 +13378,7 @@ export namespace types {
13103
13378
  responseHeaders?: ({ [k: string]: string }|null);
13104
13379
 
13105
13380
  /** Reference */
13106
- merchantCustomerId?: (types.IIdentifier|null);
13381
+ merchantCustomerId?: (string|null);
13107
13382
  }
13108
13383
 
13109
13384
  /** Response message for deleting a customer */
@@ -13125,7 +13400,7 @@ export namespace types {
13125
13400
  public responseHeaders: { [k: string]: string };
13126
13401
 
13127
13402
  /** Reference */
13128
- public merchantCustomerId?: (types.IIdentifier|null);
13403
+ public merchantCustomerId?: (string|null);
13129
13404
 
13130
13405
  /**
13131
13406
  * Creates a new CustomerServiceDeleteResponse instance using the specified properties.
@@ -18392,8 +18667,8 @@ export namespace types {
18392
18667
  }
18393
18668
 
18394
18669
  /**
18395
- * ConnectorAuth message with oneof containing all 70 auth types
18396
- * Ordered to match Connector enum order
18670
+ * ConnectorAuth message with oneof containing all auth types.
18671
+ * Comment above each field (e.g. "// PAYPAL = 62") is the Connector enum value from this file;
18397
18672
  */
18398
18673
  class ConnectorAuth implements IConnectorAuth {
18399
18674
 
@@ -27115,27 +27390,30 @@ export namespace types {
27115
27390
  PRODUCTION = 1
27116
27391
  }
27117
27392
 
27118
- /** Properties of a ClientIdentity. */
27119
- interface IClientIdentity {
27393
+ /** Properties of a ConnectorConfig. */
27394
+ interface IConnectorConfig {
27120
27395
 
27121
27396
  /** The connector to use for all requests (Immutable) */
27122
27397
  connector?: (types.Connector|null);
27123
27398
 
27124
27399
  /** Mandatory authentication for the connector (Immutable) */
27125
27400
  auth?: (types.IConnectorAuth|null);
27401
+
27402
+ /** Primary deployment environment (Immutable) */
27403
+ environment?: (types.Environment|null);
27126
27404
  }
27127
27405
 
27128
27406
  /**
27129
- * Non-overridable identity parameters for the ConnectorClient.
27407
+ * Immutable parameters for the ConnectorClient.
27130
27408
  * Passed as the FIRST parameter during client creation.
27131
27409
  */
27132
- class ClientIdentity implements IClientIdentity {
27410
+ class ConnectorConfig implements IConnectorConfig {
27133
27411
 
27134
27412
  /**
27135
- * Constructs a new ClientIdentity.
27413
+ * Constructs a new ConnectorConfig.
27136
27414
  * @param [properties] Properties to set
27137
27415
  */
27138
- constructor(properties?: types.IClientIdentity);
27416
+ constructor(properties?: types.IConnectorConfig);
27139
27417
 
27140
27418
  /** The connector to use for all requests (Immutable) */
27141
27419
  public connector: types.Connector;
@@ -27143,51 +27421,51 @@ export namespace types {
27143
27421
  /** Mandatory authentication for the connector (Immutable) */
27144
27422
  public auth?: (types.IConnectorAuth|null);
27145
27423
 
27424
+ /** Primary deployment environment (Immutable) */
27425
+ public environment: types.Environment;
27426
+
27146
27427
  /**
27147
- * Creates a new ClientIdentity instance using the specified properties.
27428
+ * Creates a new ConnectorConfig instance using the specified properties.
27148
27429
  * @param [properties] Properties to set
27149
- * @returns ClientIdentity instance
27430
+ * @returns ConnectorConfig instance
27150
27431
  */
27151
- public static create(properties?: types.IClientIdentity): types.ClientIdentity;
27432
+ public static create(properties?: types.IConnectorConfig): types.ConnectorConfig;
27152
27433
 
27153
27434
  /**
27154
- * Encodes the specified ClientIdentity message. Does not implicitly {@link types.ClientIdentity.verify|verify} messages.
27155
- * @param message ClientIdentity message or plain object to encode
27435
+ * Encodes the specified ConnectorConfig message. Does not implicitly {@link types.ConnectorConfig.verify|verify} messages.
27436
+ * @param message ConnectorConfig message or plain object to encode
27156
27437
  * @param [writer] Writer to encode to
27157
27438
  * @returns Writer
27158
27439
  */
27159
- public static encode(message: types.IClientIdentity, writer?: $protobuf.Writer): $protobuf.Writer;
27440
+ public static encode(message: types.IConnectorConfig, writer?: $protobuf.Writer): $protobuf.Writer;
27160
27441
 
27161
27442
  /**
27162
- * Decodes a ClientIdentity message from the specified reader or buffer.
27443
+ * Decodes a ConnectorConfig message from the specified reader or buffer.
27163
27444
  * @param reader Reader or buffer to decode from
27164
27445
  * @param [length] Message length if known beforehand
27165
- * @returns ClientIdentity
27446
+ * @returns ConnectorConfig
27166
27447
  * @throws {Error} If the payload is not a reader or valid buffer
27167
27448
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27168
27449
  */
27169
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.ClientIdentity;
27450
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.ConnectorConfig;
27170
27451
 
27171
27452
  /**
27172
- * Verifies a ClientIdentity message.
27453
+ * Verifies a ConnectorConfig message.
27173
27454
  * @param message Plain object to verify
27174
27455
  * @returns `null` if valid, otherwise the reason why it is not
27175
27456
  */
27176
27457
  public static verify(message: { [k: string]: any }): (string|null);
27177
27458
 
27178
27459
  /**
27179
- * Gets the default type url for ClientIdentity
27460
+ * Gets the default type url for ConnectorConfig
27180
27461
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27181
27462
  * @returns The default type url
27182
27463
  */
27183
27464
  public static getTypeUrl(typeUrlPrefix?: string): string;
27184
27465
  }
27185
27466
 
27186
- /** Properties of a ConfigOptions. */
27187
- interface IConfigOptions {
27188
-
27189
- /** Deployment environment */
27190
- environment?: (types.Environment|null);
27467
+ /** Properties of a RequestConfig. */
27468
+ interface IRequestConfig {
27191
27469
 
27192
27470
  /** HTTP and transport configuration */
27193
27471
  http?: (types.IHttpConfig|null);
@@ -27196,21 +27474,14 @@ export namespace types {
27196
27474
  vault?: (types.IVaultOptions|null);
27197
27475
  }
27198
27476
 
27199
- /**
27200
- * Overridable parameters for the SDK behavior.
27201
- * Used as the SECOND parameter in initialization (defaults)
27202
- * and as the parameter for request-level overrides.
27203
- */
27204
- class ConfigOptions implements IConfigOptions {
27477
+ /** Overridable parameters for individual SDK calls. */
27478
+ class RequestConfig implements IRequestConfig {
27205
27479
 
27206
27480
  /**
27207
- * Constructs a new ConfigOptions.
27481
+ * Constructs a new RequestConfig.
27208
27482
  * @param [properties] Properties to set
27209
27483
  */
27210
- constructor(properties?: types.IConfigOptions);
27211
-
27212
- /** Deployment environment */
27213
- public environment?: (types.Environment|null);
27484
+ constructor(properties?: types.IRequestConfig);
27214
27485
 
27215
27486
  /** HTTP and transport configuration */
27216
27487
  public http?: (types.IHttpConfig|null);
@@ -27219,39 +27490,39 @@ export namespace types {
27219
27490
  public vault?: (types.IVaultOptions|null);
27220
27491
 
27221
27492
  /**
27222
- * Creates a new ConfigOptions instance using the specified properties.
27493
+ * Creates a new RequestConfig instance using the specified properties.
27223
27494
  * @param [properties] Properties to set
27224
- * @returns ConfigOptions instance
27495
+ * @returns RequestConfig instance
27225
27496
  */
27226
- public static create(properties?: types.IConfigOptions): types.ConfigOptions;
27497
+ public static create(properties?: types.IRequestConfig): types.RequestConfig;
27227
27498
 
27228
27499
  /**
27229
- * Encodes the specified ConfigOptions message. Does not implicitly {@link types.ConfigOptions.verify|verify} messages.
27230
- * @param message ConfigOptions message or plain object to encode
27500
+ * Encodes the specified RequestConfig message. Does not implicitly {@link types.RequestConfig.verify|verify} messages.
27501
+ * @param message RequestConfig message or plain object to encode
27231
27502
  * @param [writer] Writer to encode to
27232
27503
  * @returns Writer
27233
27504
  */
27234
- public static encode(message: types.IConfigOptions, writer?: $protobuf.Writer): $protobuf.Writer;
27505
+ public static encode(message: types.IRequestConfig, writer?: $protobuf.Writer): $protobuf.Writer;
27235
27506
 
27236
27507
  /**
27237
- * Decodes a ConfigOptions message from the specified reader or buffer.
27508
+ * Decodes a RequestConfig message from the specified reader or buffer.
27238
27509
  * @param reader Reader or buffer to decode from
27239
27510
  * @param [length] Message length if known beforehand
27240
- * @returns ConfigOptions
27511
+ * @returns RequestConfig
27241
27512
  * @throws {Error} If the payload is not a reader or valid buffer
27242
27513
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27243
27514
  */
27244
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.ConfigOptions;
27515
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.RequestConfig;
27245
27516
 
27246
27517
  /**
27247
- * Verifies a ConfigOptions message.
27518
+ * Verifies a RequestConfig message.
27248
27519
  * @param message Plain object to verify
27249
27520
  * @returns `null` if valid, otherwise the reason why it is not
27250
27521
  */
27251
27522
  public static verify(message: { [k: string]: any }): (string|null);
27252
27523
 
27253
27524
  /**
27254
- * Gets the default type url for ConfigOptions
27525
+ * Gets the default type url for RequestConfig
27255
27526
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27256
27527
  * @returns The default type url
27257
27528
  */
@@ -27280,10 +27551,7 @@ export namespace types {
27280
27551
  caCert?: (types.ICaCert|null);
27281
27552
  }
27282
27553
 
27283
- /**
27284
- * HTTP transport configuration.
27285
- * Flattened for cleaner access and merging logic across SDKs.
27286
- */
27554
+ /** HTTP transport configuration. */
27287
27555
  class HttpConfig implements IHttpConfig {
27288
27556
 
27289
27557
  /**
@@ -27545,10 +27813,10 @@ export namespace types {
27545
27813
  /** Properties of a FfiOptions. */
27546
27814
  interface IFfiOptions {
27547
27815
 
27548
- /** Environment context for config lookup */
27816
+ /** Resolved environment context */
27549
27817
  environment?: (types.Environment|null);
27550
27818
 
27551
- /** Connector context for logic selection */
27819
+ /** Resolved connector context */
27552
27820
  connector?: (types.Connector|null);
27553
27821
 
27554
27822
  /** Credentials needed to build auth headers/payloads */
@@ -27564,10 +27832,10 @@ export namespace types {
27564
27832
  */
27565
27833
  constructor(properties?: types.IFfiOptions);
27566
27834
 
27567
- /** Environment context for config lookup */
27835
+ /** Resolved environment context */
27568
27836
  public environment: types.Environment;
27569
27837
 
27570
- /** Connector context for logic selection */
27838
+ /** Resolved connector context */
27571
27839
  public connector: types.Connector;
27572
27840
 
27573
27841
  /** Credentials needed to build auth headers/payloads */
@@ -27769,6 +28037,160 @@ export namespace types {
27769
28037
  */
27770
28038
  public static getTypeUrl(typeUrlPrefix?: string): string;
27771
28039
  }
28040
+
28041
+ /** Properties of a RequestError. */
28042
+ interface IRequestError {
28043
+
28044
+ /** RequestError status */
28045
+ status?: (types.PaymentStatus|null);
28046
+
28047
+ /** RequestError errorMessage */
28048
+ errorMessage?: (string|null);
28049
+
28050
+ /** RequestError errorCode */
28051
+ errorCode?: (string|null);
28052
+
28053
+ /** RequestError statusCode */
28054
+ statusCode?: (number|null);
28055
+ }
28056
+
28057
+ /** Error returned by req_transformer FFI calls */
28058
+ class RequestError implements IRequestError {
28059
+
28060
+ /**
28061
+ * Constructs a new RequestError.
28062
+ * @param [properties] Properties to set
28063
+ */
28064
+ constructor(properties?: types.IRequestError);
28065
+
28066
+ /** RequestError status. */
28067
+ public status: types.PaymentStatus;
28068
+
28069
+ /** RequestError errorMessage. */
28070
+ public errorMessage?: (string|null);
28071
+
28072
+ /** RequestError errorCode. */
28073
+ public errorCode?: (string|null);
28074
+
28075
+ /** RequestError statusCode. */
28076
+ public statusCode?: (number|null);
28077
+
28078
+ /**
28079
+ * Creates a new RequestError instance using the specified properties.
28080
+ * @param [properties] Properties to set
28081
+ * @returns RequestError instance
28082
+ */
28083
+ public static create(properties?: types.IRequestError): types.RequestError;
28084
+
28085
+ /**
28086
+ * Encodes the specified RequestError message. Does not implicitly {@link types.RequestError.verify|verify} messages.
28087
+ * @param message RequestError message or plain object to encode
28088
+ * @param [writer] Writer to encode to
28089
+ * @returns Writer
28090
+ */
28091
+ public static encode(message: types.IRequestError, writer?: $protobuf.Writer): $protobuf.Writer;
28092
+
28093
+ /**
28094
+ * Decodes a RequestError message from the specified reader or buffer.
28095
+ * @param reader Reader or buffer to decode from
28096
+ * @param [length] Message length if known beforehand
28097
+ * @returns RequestError
28098
+ * @throws {Error} If the payload is not a reader or valid buffer
28099
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28100
+ */
28101
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.RequestError;
28102
+
28103
+ /**
28104
+ * Verifies a RequestError message.
28105
+ * @param message Plain object to verify
28106
+ * @returns `null` if valid, otherwise the reason why it is not
28107
+ */
28108
+ public static verify(message: { [k: string]: any }): (string|null);
28109
+
28110
+ /**
28111
+ * Gets the default type url for RequestError
28112
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28113
+ * @returns The default type url
28114
+ */
28115
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28116
+ }
28117
+
28118
+ /** Properties of a ResponseError. */
28119
+ interface IResponseError {
28120
+
28121
+ /** ResponseError status */
28122
+ status?: (types.PaymentStatus|null);
28123
+
28124
+ /** ResponseError errorMessage */
28125
+ errorMessage?: (string|null);
28126
+
28127
+ /** ResponseError errorCode */
28128
+ errorCode?: (string|null);
28129
+
28130
+ /** ResponseError statusCode */
28131
+ statusCode?: (number|null);
28132
+ }
28133
+
28134
+ /** Error returned by res_transformer FFI calls */
28135
+ class ResponseError implements IResponseError {
28136
+
28137
+ /**
28138
+ * Constructs a new ResponseError.
28139
+ * @param [properties] Properties to set
28140
+ */
28141
+ constructor(properties?: types.IResponseError);
28142
+
28143
+ /** ResponseError status. */
28144
+ public status: types.PaymentStatus;
28145
+
28146
+ /** ResponseError errorMessage. */
28147
+ public errorMessage?: (string|null);
28148
+
28149
+ /** ResponseError errorCode. */
28150
+ public errorCode?: (string|null);
28151
+
28152
+ /** ResponseError statusCode. */
28153
+ public statusCode?: (number|null);
28154
+
28155
+ /**
28156
+ * Creates a new ResponseError instance using the specified properties.
28157
+ * @param [properties] Properties to set
28158
+ * @returns ResponseError instance
28159
+ */
28160
+ public static create(properties?: types.IResponseError): types.ResponseError;
28161
+
28162
+ /**
28163
+ * Encodes the specified ResponseError message. Does not implicitly {@link types.ResponseError.verify|verify} messages.
28164
+ * @param message ResponseError message or plain object to encode
28165
+ * @param [writer] Writer to encode to
28166
+ * @returns Writer
28167
+ */
28168
+ public static encode(message: types.IResponseError, writer?: $protobuf.Writer): $protobuf.Writer;
28169
+
28170
+ /**
28171
+ * Decodes a ResponseError message from the specified reader or buffer.
28172
+ * @param reader Reader or buffer to decode from
28173
+ * @param [length] Message length if known beforehand
28174
+ * @returns ResponseError
28175
+ * @throws {Error} If the payload is not a reader or valid buffer
28176
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28177
+ */
28178
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): types.ResponseError;
28179
+
28180
+ /**
28181
+ * Verifies a ResponseError message.
28182
+ * @param message Plain object to verify
28183
+ * @returns `null` if valid, otherwise the reason why it is not
28184
+ */
28185
+ public static verify(message: { [k: string]: any }): (string|null);
28186
+
28187
+ /**
28188
+ * Gets the default type url for ResponseError
28189
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28190
+ * @returns The default type url
28191
+ */
28192
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28193
+ }
27772
28194
  }
27773
28195
 
27774
28196
  /** Namespace google. */