/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Bank */ export interface Bank { /** * This the the country code asscoiated with the payment bank. ISO Alpha-2 codes accepted: (FR) France, (ES) - Spain (DE), (IT) Italy, Germany,(GB) - United Kingdom ,(PT) Portugal and (SE) Sweden * @type {string} * @memberof Bank */ countryCode?: string; /** * The bank's parent company name. Example: Banque Populaire * @type {string} * @memberof Bank */ parentName?: string; /** * A weblink to the bank's logo * @type {string} * @memberof Bank */ logoURL?: string; /** * This is the bank name. Example: Banque Populaire Alsace Lorraine * @type {string} * @memberof Bank */ bankName?: string; /** * This is the unique bankId associated with the bank. * @type {string} * @memberof Bank */ bankId?: string; /** * Personal or Business Acoount * @type {Array} * @memberof Bank */ segments?: Array; } /** * Check if a given object implements the Bank interface. */ export declare function instanceOfBank(value: object): boolean; export declare function BankFromJSON(json: any): Bank; export declare function BankFromJSONTyped(json: any, ignoreDiscriminator: boolean): Bank; export declare function BankToJSON(value?: Bank | null): any;