@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
79 lines (78 loc) • 2.57 kB
TypeScript
/**
* 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 PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
export interface PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo {
/**
* shipping method for the product. Possible values are: - `sameday` - `oneday` - `twoday` - `threeday` - `lowcost` - `pickup` - `other` - `none`
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
method?: string;
/**
* First name of the recipient.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
firstName?: string;
/**
* Last name of the recipient.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
lastName?: string;
/**
* First line of the shipping address.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
address1?: string;
/**
* Second line of the shipping address
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
address2?: string;
/**
* City of the shipping address.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
locality?: string;
/**
* Postal code of shipping address. Consists of 5 to 9 digits.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
postalCode?: string;
/**
* State or province of shipping address. This is a State, Province, and Territory Codes for the United States and Canada.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
administrativeArea?: string;
/**
* Country of shipping address. This is a two-character ISO Standard Country Codes.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
country?: string;
/**
* Phone number of shipping address.
* @type {string}
* @memberof PtsV2PaymentsOrderPost201ResponseOrderInformationShipTo
*/
phoneNumber?: string;
}