@maxio-com/advanced-billing-sdk
Version:
Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.
33 lines • 973 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface CreateCustomer {
firstName: string;
lastName: string;
email: string;
ccEmails?: string;
organization?: string;
reference?: string;
address?: string;
address2?: string;
city?: string;
state?: string;
zip?: string;
country?: string;
phone?: string;
/** Set a specific language on a customer record. */
locale?: string;
vatNumber?: string;
taxExempt?: boolean;
taxExemptReason?: string;
/** The parent ID in Chargify if applicable. Parent is another Customer object. */
parentId?: number | null;
/** The Salesforce ID of the customer */
salesforceId?: string | null;
[key: string]: unknown;
}
export declare const createCustomerSchema: Schema<CreateCustomer>;
//# sourceMappingURL=createCustomer.d.ts.map