/** * Represents a code describing the intended use for a product that may affect its taxability * @export * @class EntityUseCodeModel */ export declare class EntityUseCodeModel { /** * @type {string} * @memberof EntityUseCodeModel */ code?: string | undefined; /** * @type {string} * @memberof EntityUseCodeModel */ name?: string | undefined; /** * @type {string} * @memberof EntityUseCodeModel */ description?: string | undefined; /** * @type {string[]} * @memberof EntityUseCodeModel */ validCountries?: string[] | undefined; }