wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 732 B
TypeScript
declare class RestCountryState {
/**
* The state's code used within addresses.
*/
'code'?: string;
/**
*
*/
'country'?: string;
/**
* The two-letter code of the state's country (ISO 3166-1 alpha-2 format).
*/
'countryCode'?: string;
/**
* The state's code in ISO 3166-2 format.
*/
'id'?: string;
/**
* The name of the state.
*/
'name'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { RestCountryState };