@golemio/parkings
Version:
Golemio Parkings Module
13 lines (12 loc) • 539 B
TypeScript
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IBusinessError } from "./interfaces/IBusinessError";
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
export declare class BusinessError extends Model<BusinessError, IBusinessError> implements IBusinessError {
identifier: string;
provider: string;
record_date: string;
type: string;
detail: object;
static attributeModel: ModelAttributes<BusinessError>;
static jsonSchema: JSONSchemaType<IBusinessError[]>;
}