/**
 * CyberSource Merged Spec
 * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
 *
 * OpenAPI spec version: 0.0.1
 *
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */
/**
 * This information is sent to the issuer as part of network token enrollment and is not stored under the Instrument Identifier.
 * @export
 * @interface TmsEmbeddedInstrumentIdentifierBillTo
 */
export interface TmsEmbeddedInstrumentIdentifierBillTo {
    /**
     * Payment card billing street address as it appears on the credit card issuer's records.
     * @type {string}
     * @memberof TmsEmbeddedInstrumentIdentifierBillTo
     */
    address1?: string;
    /**
     * Additional address information.
     * @type {string}
     * @memberof TmsEmbeddedInstrumentIdentifierBillTo
     */
    address2?: string;
    /**
     * Payment card billing city.
     * @type {string}
     * @memberof TmsEmbeddedInstrumentIdentifierBillTo
     */
    locality?: string;
    /**
     * State or province of the billing address. Use the State, Province, and Territory Codes for the United States and Canada.
     * @type {string}
     * @memberof TmsEmbeddedInstrumentIdentifierBillTo
     */
    administrativeArea?: string;
    /**
     * Postal code for the billing address. The postal code must consist of 5 to 9 digits.  When the billing country is the U.S., the 9-digit postal code must follow this format: [5 digits][dash][4 digits]  **Example** `12345-6789`  When the billing country is Canada, the 6-digit postal code must follow this format: [alpha][numeric][alpha][space][numeric][alpha][numeric]  **Example** `A1B 2C3`
     * @type {string}
     * @memberof TmsEmbeddedInstrumentIdentifierBillTo
     */
    postalCode?: string;
    /**
     * Payment card billing country. Use the two-character ISO Standard Country Codes.
     * @type {string}
     * @memberof TmsEmbeddedInstrumentIdentifierBillTo
     */
    country?: string;
}
