/**
 * 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.
 */
/**
 *
 * @export
 * @interface PtsV2PaymentsPost201ResponseOrderInformationShipTo
 */
export interface PtsV2PaymentsPost201ResponseOrderInformationShipTo {
    /**
     * First name of the recipient.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    firstname?: string;
    /**
     * Last name of the recipient.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    lastname?: string;
    /**
     * First line of the shipping address.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    address1?: string;
    /**
     * Second line of the shipping address.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    address2?: string;
    /**
     * City of the shipping address.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    locality?: string;
    /**
     * State or province of shipping address. This is a State, Province, and Territory Codes for the United States and Canada.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    administrativeArea?: string;
    /**
     * Postal code of the shipping address. Consists of 5 to 9 digits.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    postalCode?: string;
    /**
     * Country of shipping address. This is a two-character ISO Standard Country Codes.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    country?: string;
    /**
     * Phone number of the recipient.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseOrderInformationShipTo
     */
    phoneNumber?: string;
}
