UNPKG

@paciolan/cybersource-sdk

Version:
31 lines (30 loc) 1.46 kB
/** * 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. */ /** * Contains shipping information not related to address. * @export * @interface Riskv1decisionsOrderInformationShippingDetails */ export interface Riskv1decisionsOrderInformationShippingDetails { /** * Boolean that indicates whether the customer requested gift wrapping for this purchase. This field can contain one of the following values: - true: The customer requested gift wrapping. - false: The customer did not request gift wrapping. * @type {boolean} * @memberof Riskv1decisionsOrderInformationShippingDetails */ giftWrap?: boolean; /** * Shipping method for the product. Possible values: - `lowcost`: Lowest-cost service - `sameday`: Courier or same-day service - `oneday`: Next-day or overnight service - `twoday`: Two-day service - `threeday`: Three-day service - `pickup`: Store pick-up - `other`: Other shipping method - `none`: No shipping method because product is a service or subscription * @type {string} * @memberof Riskv1decisionsOrderInformationShippingDetails */ shippingMethod?: string; }