UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

81 lines 2 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SoSDataAuditEntityBase */ export interface SoSDataAuditEntityBase { /** * * @type {number} * @memberof SoSDataAuditEntityBase */ daid: number; /** * * @type {string} * @memberof SoSDataAuditEntityBase */ table: string; /** * * @type {string} * @memberof SoSDataAuditEntityBase */ column: string; /** * * @type {string} * @memberof SoSDataAuditEntityBase */ recordId: string; /** * * @type {Date} * @memberof SoSDataAuditEntityBase */ createdAt: string; /** * * @type {string} * @memberof SoSDataAuditEntityBase */ updatedBy: string; /** * * @type {object} * @memberof SoSDataAuditEntityBase */ oldValue: object; /** * * @type {object} * @memberof SoSDataAuditEntityBase */ newValue: object; /** * * @type {string} * @memberof SoSDataAuditEntityBase */ type: string; } /** * Check if a given object implements the SoSDataAuditEntityBase interface. */ export declare function instanceOfSoSDataAuditEntityBase(value: object): value is SoSDataAuditEntityBase; export declare function SoSDataAuditEntityBaseFromJSON(json: any): SoSDataAuditEntityBase; export declare function SoSDataAuditEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSDataAuditEntityBase; export declare function SoSDataAuditEntityBaseToJSON(json: any): SoSDataAuditEntityBase; export declare function SoSDataAuditEntityBaseToJSONTyped(value?: SoSDataAuditEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSDataAuditEntityBase.d.ts.map