// Generated Source import CountryResource from "./CountryResource"; import Currency from "./Currency"; interface BrandResource { /** * */ uri?: string; /** * */ id?: string; /** * */ name?: string; /** * */ homeCountry?: CountryResource; /** * */ currency?: Currency; } export default BrandResource;