UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.6 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. */ import type { SoSUserEntityBase } from './SoSUserEntityBase'; /** * * @export * @interface V4UsersGetUsersInViewResponseDto */ export interface V4UsersGetUsersInViewResponseDto { /** * List of users retrieved from the database * @type {Array<SoSUserEntityBase>} * @memberof V4UsersGetUsersInViewResponseDto */ objects: Array<SoSUserEntityBase>; /** * Total count of users matching the query * @type {number} * @memberof V4UsersGetUsersInViewResponseDto */ count: number; } /** * Check if a given object implements the V4UsersGetUsersInViewResponseDto interface. */ export declare function instanceOfV4UsersGetUsersInViewResponseDto(value: object): value is V4UsersGetUsersInViewResponseDto; export declare function V4UsersGetUsersInViewResponseDtoFromJSON(json: any): V4UsersGetUsersInViewResponseDto; export declare function V4UsersGetUsersInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UsersGetUsersInViewResponseDto; export declare function V4UsersGetUsersInViewResponseDtoToJSON(json: any): V4UsersGetUsersInViewResponseDto; export declare function V4UsersGetUsersInViewResponseDtoToJSONTyped(value?: V4UsersGetUsersInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UsersGetUsersInViewResponseDto.d.ts.map