@getopenpay/client
Version:
OpenPay API TypeScript SDK
69 lines (68 loc) • 1.67 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* 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 CompleteAddress
*/
export interface CompleteAddress {
/**
*
* @type {string}
* @memberof CompleteAddress
*/
city?: string | null;
/**
*
* @type {string}
* @memberof CompleteAddress
*/
country?: string | null;
/**
*
* @type {string}
* @memberof CompleteAddress
*/
line1?: string | null;
/**
*
* @type {string}
* @memberof CompleteAddress
*/
line2?: string | null;
/**
*
* @type {string}
* @memberof CompleteAddress
*/
line3?: string | null;
/**
*
* @type {string}
* @memberof CompleteAddress
*/
state?: string | null;
/**
*
* @type {string}
* @memberof CompleteAddress
*/
zipCode?: string | null;
}
/**
* Check if a given object implements the CompleteAddress interface.
*/
export declare function instanceOfCompleteAddress(value: object): value is CompleteAddress;
export declare function CompleteAddressFromJSON(json: any): CompleteAddress;
export declare function CompleteAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompleteAddress;
export declare function CompleteAddressToJSON(json: any): CompleteAddress;
export declare function CompleteAddressToJSONTyped(value?: CompleteAddress | null, ignoreDiscriminator?: boolean): any;