/** * 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 */ /** * * @export * @interface EmploymentDetail */ export interface EmploymentDetail { /** * Name of employer * @type {string} * @memberof EmploymentDetail */ employerName?: string | null; /** * Industry or nature of business * @type {string} * @memberof EmploymentDetail */ natureOfBusiness?: string | null; /** * Occupation or title * @type {string} * @memberof EmploymentDetail */ roleDescription?: string | null; } /** * Check if a given object implements the EmploymentDetail interface. */ export declare function instanceOfEmploymentDetail(value: object): boolean; export declare function EmploymentDetailFromJSON(json: any): EmploymentDetail; export declare function EmploymentDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmploymentDetail; export declare function EmploymentDetailToJSON(value?: EmploymentDetail | null): any;