/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * * @export */ export declare const AddressStatus: { readonly Active: "ACTIVE"; readonly Deleted: "DELETED"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type AddressStatus = typeof AddressStatus[keyof typeof AddressStatus]; export declare function AddressStatusFromJSON(json: any): AddressStatus; export declare function AddressStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddressStatus; export declare function AddressStatusToJSON(value?: AddressStatus | null): any;