@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.
34 lines • 1.03 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
export interface UpdateCustomer {
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;
parentId?: number | null;
/** Is the customer verified to use ACH as a payment method. Available only on Authorize.Net gateway */
verified?: boolean | null;
/** The Salesforce ID of the customer */
salesforceId?: string | null;
[key: string]: unknown;
}
export declare const updateCustomerSchema: Schema<UpdateCustomer>;
//# sourceMappingURL=updateCustomer.d.ts.map