@golemio/parkings
Version:
Golemio Parkings Module
21 lines (20 loc) • 864 B
TypeScript
import { IPayment } from "./interfaces/IPayment";
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
export declare class PaymentModel extends Model<PaymentModel> implements IPayment {
static tableName: string;
parking_id: string;
source: string;
payment_web_url: string | null;
payment_android_url: string | null;
payment_ios_url: string | null;
payment_discovery_url: string | null;
reservation_type: string | null;
reservation_web_url: string | null;
reservation_android_url: string | null;
reservation_ios_url: string | null;
reservation_discovery_url: string | null;
static attributeModel: ModelAttributes<PaymentModel>;
static jsonSchema: JSONSchemaType<IPayment[]>;
static attributeUpdateList: string[];
}