/** * Defines a country as known to Avalara's certificate management system. * @export * @class CountryModel */ export declare class CountryModel { /** * @type {number} * @memberof CountryModel */ id?: number | undefined; /** * @type {string} * @memberof CountryModel */ name?: string | undefined; /** * @type {string} * @memberof CountryModel */ initials?: string | undefined; /** * @type {string} * @memberof CountryModel */ abbreviation?: string | undefined; }