/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * 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 { QuoteDataShippingMethodExtensionInterface } from './quoteDataShippingMethodExtensionInterface'; /** * Interface ShippingMethodInterface */ export interface QuoteDataShippingMethodInterface { /** * Shipping carrier code. */ carrierCode: string; /** * Shipping method code. */ methodCode: string; /** * Shipping carrier title. Otherwise, null. */ carrierTitle?: string; /** * Shipping method title. Otherwise, null. */ methodTitle?: string; /** * Shipping amount in store currency. */ amount: number; /** * Shipping amount in base currency. */ baseAmount: number; /** * The value of the availability flag for the current shipping method. */ available: boolean; extensionAttributes?: QuoteDataShippingMethodExtensionInterface; /** * Shipping Error message. */ errorMessage: string; /** * Shipping price excl tax. */ priceExclTax: number; /** * Shipping price incl tax. */ priceInclTax: number; }