/** * Model that has the matching count for an errorcode * @export * @class ErrorCodeOutputModel */ export declare class ErrorCodeOutputModel { /** * @type {string} * @memberof ErrorCodeOutputModel */ errorCode?: string | undefined; /** * @type {number} * @memberof ErrorCodeOutputModel */ count?: number | undefined; }