/** * 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 { DirectoryDataCountryInformationExtensionInterface } from './directoryDataCountryInformationExtensionInterface'; import { DirectoryDataRegionInformationInterface } from './directoryDataRegionInformationInterface'; /** * Country Information interface. */ export interface DirectoryDataCountryInformationInterface { /** * The country id for the store. */ id: string; /** * The country 2 letter abbreviation for the store. */ twoLetterAbbreviation: string; /** * The country 3 letter abbreviation for the store. */ threeLetterAbbreviation: string; /** * The country full name (in store locale) for the store. */ fullNameLocale: string; /** * The country full name (in English) for the store. */ fullNameEnglish: string; /** * The available regions for the store. */ availableRegions?: Array; extensionAttributes?: DirectoryDataCountryInformationExtensionInterface; }