/** * Partner type: ORGANIZATION or INDIVIDUAL */ export const BusinessPartnerType = { "ORGANIZATION": "ORGANIZATION", "INDIVIDUAL": "INDIVIDUAL" } as const; export type BusinessPartnerType = (typeof BusinessPartnerType)[keyof typeof BusinessPartnerType]; /** * Lifecycle status */ export const BusinessPartnerStatus = { "ACTIVE": "ACTIVE", "INACTIVE": "INACTIVE" } as const; export type BusinessPartnerStatus = (typeof BusinessPartnerStatus)[keyof typeof BusinessPartnerStatus]; /** * Lifecycle status */ export const CustomerAccountStatus = { "ACTIVE": "ACTIVE", "INACTIVE": "INACTIVE" } as const; export type CustomerAccountStatus = (typeof CustomerAccountStatus)[keyof typeof CustomerAccountStatus]; /** * Customer address purpose: BILL_TO or SHIP_TO */ export const CustomerAddressUsagePurpose = { "BILL_TO": "BILL_TO", "SHIP_TO": "SHIP_TO" } as const; export type CustomerAddressUsagePurpose = (typeof CustomerAddressUsagePurpose)[keyof typeof CustomerAddressUsagePurpose]; /** * Customer bank account purpose: RECEIPT or REFUND */ export const CustomerBankAccountUsagePurpose = { "RECEIPT": "RECEIPT", "REFUND": "REFUND" } as const; export type CustomerBankAccountUsagePurpose = (typeof CustomerBankAccountUsagePurpose)[keyof typeof CustomerBankAccountUsagePurpose]; /** * Lifecycle status */ export const SupplierAccountStatus = { "ACTIVE": "ACTIVE", "INACTIVE": "INACTIVE" } as const; export type SupplierAccountStatus = (typeof SupplierAccountStatus)[keyof typeof SupplierAccountStatus]; /** * Supplier address purpose: ORDER_FROM, REMIT_TO, SHIP_FROM, or RETURN_TO */ export const SupplierAddressUsagePurpose = { "ORDER_FROM": "ORDER_FROM", "REMIT_TO": "REMIT_TO", "SHIP_FROM": "SHIP_FROM", "RETURN_TO": "RETURN_TO" } as const; export type SupplierAddressUsagePurpose = (typeof SupplierAddressUsagePurpose)[keyof typeof SupplierAddressUsagePurpose]; /** * Supplier bank account purpose: PAYMENT or REFUND */ export const SupplierBankAccountUsagePurpose = { "PAYMENT": "PAYMENT", "REFUND": "REFUND" } as const; export type SupplierBankAccountUsagePurpose = (typeof SupplierBankAccountUsagePurpose)[keyof typeof SupplierBankAccountUsagePurpose];