/** * 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 Birth */ export interface Birth { /** * Client Date of Birth * @type {string} * @memberof Birth */ date: string; /** * Client City of Birth * @type {string} * @memberof Birth */ city?: string; /** * Client Country of Birth, using ISO 3166-1 alpha-3. Three-letter country code, for example: FRA (France), GBR (United Kingdom of Great Britain and Northern Ireland) * @type {string} * @memberof Birth */ country?: string; } /** * Check if a given object implements the Birth interface. */ export declare function instanceOfBirth(value: object): boolean; export declare function BirthFromJSON(json: any): Birth; export declare function BirthFromJSONTyped(json: any, ignoreDiscriminator: boolean): Birth; export declare function BirthToJSON(value?: Birth | null): any;