@golemio/energetics
Version:
Golemio Energetics Module
22 lines (21 loc) • 899 B
TypeScript
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IOrganizationsModel } from "./interfaces/IOrganizationsModel";
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
export declare class OrganizationsModel extends Model<OrganizationsModel> implements IOrganizationsModel {
static TABLE_NAME: string;
id: number;
name: string | null;
label: string | null;
address_street: string | null;
address_house_number: string | null;
address_city: string | null;
address_country: string | null;
address_mail: string | null;
address_phone: string | null;
address_web_address: string | null;
category: string | null;
created_by_id: number | null;
grafana_url: string | null;
static attributeModel: ModelAttributes<OrganizationsModel>;
static arrayJsonSchema: JSONSchemaType<IOrganizationsModel[]>;
}