@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
63 lines • 1.79 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 SoSTenantEntityBase
*/
export interface SoSTenantEntityBase {
/**
* Unique tenant identifier
* @type {number}
* @memberof SoSTenantEntityBase
*/
tid: number;
/**
* Tenant name
* @type {string}
* @memberof SoSTenantEntityBase
*/
name: string;
/**
* Tenant email address
* @type {string}
* @memberof SoSTenantEntityBase
*/
email?: string;
/**
* Tenant phone number
* @type {string}
* @memberof SoSTenantEntityBase
*/
phone?: string;
/**
* Organization ID - tenants are organization-specific
* @type {number}
* @memberof SoSTenantEntityBase
*/
organizationId: number;
/**
* When the tenant record was created
* @type {Date}
* @memberof SoSTenantEntityBase
*/
createdAt?: string;
}
/**
* Check if a given object implements the SoSTenantEntityBase interface.
*/
export declare function instanceOfSoSTenantEntityBase(value: object): value is SoSTenantEntityBase;
export declare function SoSTenantEntityBaseFromJSON(json: any): SoSTenantEntityBase;
export declare function SoSTenantEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSTenantEntityBase;
export declare function SoSTenantEntityBaseToJSON(json: any): SoSTenantEntityBase;
export declare function SoSTenantEntityBaseToJSONTyped(value?: SoSTenantEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSTenantEntityBase.d.ts.map