@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
52 lines (51 loc) • 1.86 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.
*/
import { Tmsv2customersEmbeddedDefaultShippingAddressLinks } from './tmsv2customers-embedded-default-shipping-address-links';
import { Tmsv2customersEmbeddedDefaultShippingAddressMetadata } from './tmsv2customers-embedded-default-shipping-address-metadata';
import { Tmsv2customersEmbeddedDefaultShippingAddressShipTo } from './tmsv2customers-embedded-default-shipping-address-ship-to';
/**
*
* @export
* @interface InlineResponse201
*/
export interface InlineResponse201 {
/**
*
* @type {Tmsv2customersEmbeddedDefaultShippingAddressLinks}
* @memberof InlineResponse201
*/
links?: Tmsv2customersEmbeddedDefaultShippingAddressLinks;
/**
* The Id of the Shipping Address Token.
* @type {string}
* @memberof InlineResponse201
*/
id?: string;
/**
* Flag that indicates whether customer shipping address is the dafault. Possible Values: - `true`: Shipping Address is customer's default. - `false`: Shipping Address is not customer's default.
* @type {boolean}
* @memberof InlineResponse201
*/
_default?: boolean;
/**
*
* @type {Tmsv2customersEmbeddedDefaultShippingAddressShipTo}
* @memberof InlineResponse201
*/
shipTo?: Tmsv2customersEmbeddedDefaultShippingAddressShipTo;
/**
*
* @type {Tmsv2customersEmbeddedDefaultShippingAddressMetadata}
* @memberof InlineResponse201
*/
metadata?: Tmsv2customersEmbeddedDefaultShippingAddressMetadata;
}