/** * 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 */ import type { PaylaterType } from './PaylaterType'; /** * An object representing paylater details for invoices. * @export * @interface Paylater */ export interface Paylater { /** * * @type {PaylaterType} * @memberof Paylater */ paylaterType: PaylaterType; /** * Indicates whether this paylater option should be excluded. * @type {boolean} * @memberof Paylater */ shouldExclude?: boolean; } /** * Check if a given object implements the Paylater interface. */ export declare function instanceOfPaylater(value: object): boolean; export declare function PaylaterFromJSON(json: any): Paylater; export declare function PaylaterFromJSONTyped(json: any, ignoreDiscriminator: boolean): Paylater; export declare function PaylaterToJSON(value?: Paylater | null): any;