/** * 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 { StoreDataStoreConfigExtensionInterface } from './storeDataStoreConfigExtensionInterface'; /** * StoreConfig interface */ export interface StoreDataStoreConfigInterface { /** * Store id */ id: number; /** * Store code */ code: string; /** * Website id of the store */ websiteId: number; /** * Store locale */ locale: string; /** * Base currency code */ baseCurrencyCode: string; /** * Default display currency code */ defaultDisplayCurrencyCode: string; /** * Timezone of the store */ timezone: string; /** * The unit of weight */ weightUnit: string; /** * Base URL for the store */ baseUrl: string; /** * Base link URL for the store */ baseLinkUrl: string; /** * Base static URL for the store */ baseStaticUrl: string; /** * Base media URL for the store */ baseMediaUrl: string; /** * Secure base URL for the store */ secureBaseUrl: string; /** * Secure base link URL for the store */ secureBaseLinkUrl: string; /** * Secure base static URL for the store */ secureBaseStaticUrl: string; /** * Secure base media URL for the store */ secureBaseMediaUrl: string; extensionAttributes?: StoreDataStoreConfigExtensionInterface; }