shipstation-client
Version:
ShipStation V2 SDK
38 lines (37 loc) • 1.59 kB
TypeScript
/**
* ShipStation API v2
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The Windsor framework is a new regulation in the UK that simplifies customs procedures for goods moved from the UK mainland to Northern Ireland.
* @export
* @interface AdvancedShipmentOptionsWindsorFrameworkDetails
*/
export interface AdvancedShipmentOptionsWindsorFrameworkDetails {
/**
* An indicator that will tell the carrier and HMRC the type of movement for the shipment.
* @type {string}
* @memberof AdvancedShipmentOptionsWindsorFrameworkDetails
*/
'movement_indicator'?: AdvancedShipmentOptionsWindsorFrameworkDetailsMovementIndicatorEnum;
/**
* An indicator that allows a shipper to declare the shipment as not-at-risk.
* @type {boolean}
* @memberof AdvancedShipmentOptionsWindsorFrameworkDetails
*/
'not_at_risk'?: boolean;
}
export declare const AdvancedShipmentOptionsWindsorFrameworkDetailsMovementIndicatorEnum: {
readonly C2c: "c2c";
readonly B2c: "b2c";
readonly C2b: "c2b";
readonly B2b: "b2b";
};
export type AdvancedShipmentOptionsWindsorFrameworkDetailsMovementIndicatorEnum = typeof AdvancedShipmentOptionsWindsorFrameworkDetailsMovementIndicatorEnum[keyof typeof AdvancedShipmentOptionsWindsorFrameworkDetailsMovementIndicatorEnum];