@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.81 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.
*/
import type { SoSOrganizationEntityBase } from './SoSOrganizationEntityBase';
/**
*
* @export
* @interface V4OrganizationsGetOrganizationsResponseDto
*/
export interface V4OrganizationsGetOrganizationsResponseDto {
/**
* List of organizations retrieved from the database
* @type {Array<SoSOrganizationEntityBase>}
* @memberof V4OrganizationsGetOrganizationsResponseDto
*/
objects: Array<SoSOrganizationEntityBase>;
/**
* Total count of organizations matching the query
* @type {number}
* @memberof V4OrganizationsGetOrganizationsResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4OrganizationsGetOrganizationsResponseDto interface.
*/
export declare function instanceOfV4OrganizationsGetOrganizationsResponseDto(value: object): value is V4OrganizationsGetOrganizationsResponseDto;
export declare function V4OrganizationsGetOrganizationsResponseDtoFromJSON(json: any): V4OrganizationsGetOrganizationsResponseDto;
export declare function V4OrganizationsGetOrganizationsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4OrganizationsGetOrganizationsResponseDto;
export declare function V4OrganizationsGetOrganizationsResponseDtoToJSON(json: any): V4OrganizationsGetOrganizationsResponseDto;
export declare function V4OrganizationsGetOrganizationsResponseDtoToJSONTyped(value?: V4OrganizationsGetOrganizationsResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4OrganizationsGetOrganizationsResponseDto.d.ts.map