@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
63 lines • 1.75 kB
TypeScript
/**
* 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 SoSOrganizationEntityBase
*/
export interface SoSOrganizationEntityBase {
/**
*
* @type {number}
* @memberof SoSOrganizationEntityBase
*/
oid: number;
/**
*
* @type {string}
* @memberof SoSOrganizationEntityBase
*/
name?: string;
/**
*
* @type {string}
* @memberof SoSOrganizationEntityBase
*/
description?: string;
/**
*
* @type {Date}
* @memberof SoSOrganizationEntityBase
*/
createdAt?: string;
/**
*
* @type {Date}
* @memberof SoSOrganizationEntityBase
*/
updatedAt?: string;
/**
*
* @type {string}
* @memberof SoSOrganizationEntityBase
*/
ownerId?: string;
}
/**
* Check if a given object implements the SoSOrganizationEntityBase interface.
*/
export declare function instanceOfSoSOrganizationEntityBase(value: object): value is SoSOrganizationEntityBase;
export declare function SoSOrganizationEntityBaseFromJSON(json: any): SoSOrganizationEntityBase;
export declare function SoSOrganizationEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSOrganizationEntityBase;
export declare function SoSOrganizationEntityBaseToJSON(json: any): SoSOrganizationEntityBase;
export declare function SoSOrganizationEntityBaseToJSONTyped(value?: SoSOrganizationEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSOrganizationEntityBase.d.ts.map