/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * Billing Information * @export * @interface BillingInformation */ export interface BillingInformation { /** * * @type {string} * @memberof BillingInformation */ country: string; /** * * @type {string} * @memberof BillingInformation */ streetLine1?: string | null; /** * * @type {string} * @memberof BillingInformation */ streetLine2?: string | null; /** * * @type {string} * @memberof BillingInformation */ city?: string | null; /** * * @type {string} * @memberof BillingInformation */ provinceState?: string | null; /** * * @type {string} * @memberof BillingInformation */ postalCode?: string | null; } /** * Check if a given object implements the BillingInformation interface. */ export declare function instanceOfBillingInformation(value: object): boolean; export declare function BillingInformationFromJSON(json: any): BillingInformation; export declare function BillingInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillingInformation; export declare function BillingInformationToJSON(value?: BillingInformation | null): any;