@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
28 lines (26 loc) • 755 B
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Billing details of the card holder.
* @export
* @interface SimpleBillingDetails
*/
export interface SimpleBillingDetails {
/**
* Country portion of the address. Formatted as a two-letter country code specified in ISO 3166-1 alpha-2.
* @type {string}
* @memberof SimpleBillingDetails
*/
country: string;
/**
* State / County / Province / Region portion of the address. US and Canada use the two-letter code for the subdivision.
* @type {string}
* @memberof SimpleBillingDetails
*/
district: string;
}