/** * Paystack * The OpenAPI specification of the Paystack API that merchants and developers can harness to build financial solutions in Africa. * * The version of the Paystack Node library: 1.0.0 * * * 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 CustomerCreate */ export interface CustomerCreate { /** * Customer's email address * @type {string} * @memberof CustomerCreate */ email: string; /** * Customer's first name * @type {string} * @memberof CustomerCreate */ firstName?: string; /** * Customer's last name * @type {string} * @memberof CustomerCreate */ lastName?: string; /** * Customer's phone number * @type {string} * @memberof CustomerCreate */ phone?: string; /** * Stringified JSON object of custom data * @type {string} * @memberof CustomerCreate */ metadata?: string; } export declare function CustomerCreateFromJSON(json: any): CustomerCreate; export declare function CustomerCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerCreate; export declare function CustomerCreateToJSON(value?: CustomerCreate | null): any;