@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
39 lines • 1.31 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 SoSRelGroupUserEntityBase
*/
export interface SoSRelGroupUserEntityBase {
/**
*
* @type {number}
* @memberof SoSRelGroupUserEntityBase
*/
groupId: number;
/**
*
* @type {string}
* @memberof SoSRelGroupUserEntityBase
*/
userId: string;
}
/**
* Check if a given object implements the SoSRelGroupUserEntityBase interface.
*/
export declare function instanceOfSoSRelGroupUserEntityBase(value: object): value is SoSRelGroupUserEntityBase;
export declare function SoSRelGroupUserEntityBaseFromJSON(json: any): SoSRelGroupUserEntityBase;
export declare function SoSRelGroupUserEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSRelGroupUserEntityBase;
export declare function SoSRelGroupUserEntityBaseToJSON(json: any): SoSRelGroupUserEntityBase;
export declare function SoSRelGroupUserEntityBaseToJSONTyped(value?: SoSRelGroupUserEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSRelGroupUserEntityBase.d.ts.map