-
Notifications
You must be signed in to change notification settings - Fork 73
Management API models #1500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Management API models #1500
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ export class CreateCompanyWebhookRequest { | |
*/ | ||
'populateSoapActionHeader'?: boolean; | ||
/** | ||
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications). | ||
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
*/ | ||
'type': string; | ||
/** | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ export class CreateMerchantWebhookRequest { | |
*/ | ||
'populateSoapActionHeader'?: boolean; | ||
/** | ||
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications). | ||
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
*/ | ||
'type': string; | ||
/** | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,6 @@ export * from './generateApiKeyResponse'; | |
export * from './generateClientKeyResponse'; | ||
export * from './generateHmacKeyResponse'; | ||
export * from './genericPmWithTdiInfo'; | ||
export * from './giroPayInfo'; | ||
export * from './googlePayInfo'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
export * from './gratuity'; | ||
export * from './hardware'; | ||
|
@@ -107,6 +106,7 @@ export * from './orderItem'; | |
export * from './paginationLinks'; | ||
export * from './passcodes'; | ||
export * from './payAtTable'; | ||
export * from './payByBankPlaidInfo'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
export * from './payMeInfo'; | ||
export * from './payPalInfo'; | ||
export * from './payToInfo'; | ||
|
@@ -261,7 +261,6 @@ import { GenerateApiKeyResponse } from './generateApiKeyResponse'; | |
import { GenerateClientKeyResponse } from './generateClientKeyResponse'; | ||
import { GenerateHmacKeyResponse } from './generateHmacKeyResponse'; | ||
import { GenericPmWithTdiInfo } from './genericPmWithTdiInfo'; | ||
import { GiroPayInfo } from './giroPayInfo'; | ||
import { GooglePayInfo } from './googlePayInfo'; | ||
import { Gratuity } from './gratuity'; | ||
import { Hardware } from './hardware'; | ||
|
@@ -304,6 +303,7 @@ import { OrderItem } from './orderItem'; | |
import { PaginationLinks } from './paginationLinks'; | ||
import { Passcodes } from './passcodes'; | ||
import { PayAtTable } from './payAtTable'; | ||
import { PayByBankPlaidInfo } from './payByBankPlaidInfo'; | ||
import { PayMeInfo } from './payMeInfo'; | ||
import { PayPalInfo } from './payPalInfo'; | ||
import { PayToInfo } from './payToInfo'; | ||
|
@@ -550,7 +550,6 @@ let typeMap: {[index: string]: any} = { | |
"GenerateClientKeyResponse": GenerateClientKeyResponse, | ||
"GenerateHmacKeyResponse": GenerateHmacKeyResponse, | ||
"GenericPmWithTdiInfo": GenericPmWithTdiInfo, | ||
"GiroPayInfo": GiroPayInfo, | ||
"GooglePayInfo": GooglePayInfo, | ||
"Gratuity": Gratuity, | ||
"Hardware": Hardware, | ||
|
@@ -593,6 +592,7 @@ let typeMap: {[index: string]: any} = { | |
"PaginationLinks": PaginationLinks, | ||
"Passcodes": Passcodes, | ||
"PayAtTable": PayAtTable, | ||
"PayByBankPlaidInfo": PayByBankPlaidInfo, | ||
"PayMeInfo": PayMeInfo, | ||
"PayPalInfo": PayPalInfo, | ||
"PayToInfo": PayToInfo, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/* | ||
* The version of the OpenAPI document: v3 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit this class manually. | ||
*/ | ||
|
||
import { TransactionDescriptionInfo } from './transactionDescriptionInfo'; | ||
|
||
export class PayByBankPlaidInfo { | ||
/** | ||
* Country Code. | ||
*/ | ||
'countryCode'?: string; | ||
/** | ||
* Merchant logo (max. size 150kB). Format: Base64-encoded string. | ||
*/ | ||
'logo'?: string; | ||
/** | ||
* The city the merchant is doing business in. | ||
*/ | ||
'merchantCity'?: string; | ||
/** | ||
* Legal Business Name of the Merchant. | ||
*/ | ||
'merchantLegalName'?: string; | ||
/** | ||
* Merchant shop url. | ||
*/ | ||
'merchantShopUrl'?: string; | ||
/** | ||
* The state/province of the merchant. | ||
*/ | ||
'merchantStateProvince'?: string; | ||
/** | ||
* The street address of the merchant. | ||
*/ | ||
'merchantStreetAddress'?: string; | ||
'transactionDescription'?: TransactionDescriptionInfo | null; | ||
/** | ||
* The zip code of the account. | ||
*/ | ||
'zipCode'?: string; | ||
|
||
static discriminator: string | undefined = undefined; | ||
|
||
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ | ||
{ | ||
"name": "countryCode", | ||
"baseName": "countryCode", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "logo", | ||
"baseName": "logo", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "merchantCity", | ||
"baseName": "merchantCity", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "merchantLegalName", | ||
"baseName": "merchantLegalName", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "merchantShopUrl", | ||
"baseName": "merchantShopUrl", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "merchantStateProvince", | ||
"baseName": "merchantStateProvince", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "merchantStreetAddress", | ||
"baseName": "merchantStreetAddress", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "transactionDescription", | ||
"baseName": "transactionDescription", | ||
"type": "TransactionDescriptionInfo | null" | ||
}, | ||
{ | ||
"name": "zipCode", | ||
"baseName": "zipCode", | ||
"type": "string" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return PayByBankPlaidInfo.attributeTypeMap; | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,12 @@ import { CartesBancairesInfo } from './cartesBancairesInfo'; | |
import { ClearpayInfo } from './clearpayInfo'; | ||
import { DinersInfo } from './dinersInfo'; | ||
import { GenericPmWithTdiInfo } from './genericPmWithTdiInfo'; | ||
import { GiroPayInfo } from './giroPayInfo'; | ||
import { GooglePayInfo } from './googlePayInfo'; | ||
import { JCBInfo } from './jCBInfo'; | ||
import { KlarnaInfo } from './klarnaInfo'; | ||
import { MealVoucherFRInfo } from './mealVoucherFRInfo'; | ||
import { NyceInfo } from './nyceInfo'; | ||
import { PayByBankPlaidInfo } from './payByBankPlaidInfo'; | ||
import { PayMeInfo } from './payMeInfo'; | ||
import { PayPalInfo } from './payPalInfo'; | ||
import { PayToInfo } from './payToInfo'; | ||
|
@@ -75,7 +75,6 @@ export class PaymentMethod { | |
* Indicates whether the payment method is enabled (**true**) or disabled (**false**). | ||
*/ | ||
'enabled'?: boolean; | ||
'giroPay'?: GiroPayInfo | null; | ||
'girocard'?: GenericPmWithTdiInfo | null; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
'googlePay'?: GooglePayInfo | null; | ||
/** | ||
|
@@ -90,6 +89,7 @@ export class PaymentMethod { | |
'mc'?: GenericPmWithTdiInfo | null; | ||
'mealVoucher_FR'?: MealVoucherFRInfo | null; | ||
'nyce'?: NyceInfo | null; | ||
'paybybank_plaid'?: PayByBankPlaidInfo | null; | ||
'payme'?: PayMeInfo | null; | ||
'paypal'?: PayPalInfo | null; | ||
'payto'?: PayToInfo | null; | ||
|
@@ -223,11 +223,6 @@ export class PaymentMethod { | |
"baseName": "enabled", | ||
"type": "boolean" | ||
}, | ||
{ | ||
"name": "giroPay", | ||
"baseName": "giroPay", | ||
"type": "GiroPayInfo | null" | ||
}, | ||
{ | ||
"name": "girocard", | ||
"baseName": "girocard", | ||
|
@@ -283,6 +278,11 @@ export class PaymentMethod { | |
"baseName": "nyce", | ||
"type": "NyceInfo | null" | ||
}, | ||
{ | ||
"name": "paybybank_plaid", | ||
"baseName": "paybybank_plaid", | ||
"type": "PayByBankPlaidInfo | null" | ||
}, | ||
{ | ||
"name": "payme", | ||
"baseName": "payme", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,12 +117,12 @@ export namespace PaymentMethodResponse { | |
Nyce = 'nyce', | ||
OnlineBankingPl = 'onlineBanking_PL', | ||
Paybybank = 'paybybank', | ||
PaybybankPlaid = 'paybybank_plaid', | ||
Payme = 'payme', | ||
PaymePos = 'payme_pos', | ||
Paynow = 'paynow', | ||
PaynowPos = 'paynow_pos', | ||
Paypal = 'paypal', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
Payshop = 'payshop', | ||
Payto = 'payto', | ||
Pulse = 'pulse', | ||
Sodexo = 'sodexo', | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,12 @@ import { CartesBancairesInfo } from './cartesBancairesInfo'; | |
import { ClearpayInfo } from './clearpayInfo'; | ||
import { DinersInfo } from './dinersInfo'; | ||
import { GenericPmWithTdiInfo } from './genericPmWithTdiInfo'; | ||
import { GiroPayInfo } from './giroPayInfo'; | ||
import { GooglePayInfo } from './googlePayInfo'; | ||
import { JCBInfo } from './jCBInfo'; | ||
import { KlarnaInfo } from './klarnaInfo'; | ||
import { MealVoucherFRInfo } from './mealVoucherFRInfo'; | ||
import { NyceInfo } from './nyceInfo'; | ||
import { PayByBankPlaidInfo } from './payByBankPlaidInfo'; | ||
import { PayMeInfo } from './payMeInfo'; | ||
import { PayPalInfo } from './payPalInfo'; | ||
import { PayToInfo } from './payToInfo'; | ||
|
@@ -67,7 +67,6 @@ export class PaymentMethodSetupInfo { | |
'discover'?: GenericPmWithTdiInfo | null; | ||
'eft_directdebit_CA'?: GenericPmWithTdiInfo | null; | ||
'eftpos_australia'?: GenericPmWithTdiInfo | null; | ||
'giroPay'?: GiroPayInfo | null; | ||
'girocard'?: GenericPmWithTdiInfo | null; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
'googlePay'?: GooglePayInfo | null; | ||
'ideal'?: GenericPmWithTdiInfo | null; | ||
|
@@ -78,6 +77,7 @@ export class PaymentMethodSetupInfo { | |
'mc'?: GenericPmWithTdiInfo | null; | ||
'mealVoucher_FR'?: MealVoucherFRInfo | null; | ||
'nyce'?: NyceInfo | null; | ||
'paybybank_plaid'?: PayByBankPlaidInfo | null; | ||
'payme'?: PayMeInfo | null; | ||
'paypal'?: PayPalInfo | null; | ||
'payto'?: PayToInfo | null; | ||
|
@@ -197,11 +197,6 @@ export class PaymentMethodSetupInfo { | |
"baseName": "eftpos_australia", | ||
"type": "GenericPmWithTdiInfo | null" | ||
}, | ||
{ | ||
"name": "giroPay", | ||
"baseName": "giroPay", | ||
"type": "GiroPayInfo | null" | ||
}, | ||
{ | ||
"name": "girocard", | ||
"baseName": "girocard", | ||
|
@@ -252,6 +247,11 @@ export class PaymentMethodSetupInfo { | |
"baseName": "nyce", | ||
"type": "NyceInfo | null" | ||
}, | ||
{ | ||
"name": "paybybank_plaid", | ||
"baseName": "paybybank_plaid", | ||
"type": "PayByBankPlaidInfo | null" | ||
}, | ||
{ | ||
"name": "payme", | ||
"baseName": "payme", | ||
|
@@ -408,12 +408,12 @@ export namespace PaymentMethodSetupInfo { | |
Nyce = 'nyce', | ||
OnlineBankingPl = 'onlineBanking_PL', | ||
Paybybank = 'paybybank', | ||
PaybybankPlaid = 'paybybank_plaid', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
Payme = 'payme', | ||
PaymePos = 'payme_pos', | ||
Paynow = 'paynow', | ||
PaynowPos = 'paynow_pos', | ||
Paypal = 'paypal', | ||
Payshop = 'payshop', | ||
Payto = 'payto', | ||
Pulse = 'pulse', | ||
Sodexo = 'sodexo', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider adding a more detailed description for
supportEmail
to clarify its purpose and format. For example, "The email address to contact for support related to Afterpay Touch payments."