@medusajs/types
Version:
Medusa Types definition
31 lines • 729 B
TypeScript
/**
* The shipping option type to be created.
*/
export interface CreateShippingOptionTypeDTO {
/**
* The label of the shipping option type.
*/
label: string;
/**
* The description of the shipping option type.
*/
description: string;
/**
* The code of the shipping option type.
*/
code: string;
/**
* The associated shipping option's ID.
*/
shipping_option_id: string;
}
/**
* The attributes to update in the shipping option type.
*/
export interface UpdateShippingOptionTypeDTO extends Partial<CreateShippingOptionTypeDTO> {
/**
* The ID of the shipping option type.
*/
id: string;
}
//# sourceMappingURL=shipping-option-type.d.ts.map