UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.91 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 { SoSOrganizationEntityBase } from './SoSOrganizationEntityBase'; /** * * @export * @interface V4OrganizationsGetOrganizationColumnsResponseDto */ export interface V4OrganizationsGetOrganizationColumnsResponseDto { /** * List of organizations retrieved from the database * @type {Array<SoSOrganizationEntityBase>} * @memberof V4OrganizationsGetOrganizationColumnsResponseDto */ objects: Array<SoSOrganizationEntityBase>; /** * Total count of organizations matching the query * @type {number} * @memberof V4OrganizationsGetOrganizationColumnsResponseDto */ count: number; } /** * Check if a given object implements the V4OrganizationsGetOrganizationColumnsResponseDto interface. */ export declare function instanceOfV4OrganizationsGetOrganizationColumnsResponseDto(value: object): value is V4OrganizationsGetOrganizationColumnsResponseDto; export declare function V4OrganizationsGetOrganizationColumnsResponseDtoFromJSON(json: any): V4OrganizationsGetOrganizationColumnsResponseDto; export declare function V4OrganizationsGetOrganizationColumnsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4OrganizationsGetOrganizationColumnsResponseDto; export declare function V4OrganizationsGetOrganizationColumnsResponseDtoToJSON(json: any): V4OrganizationsGetOrganizationColumnsResponseDto; export declare function V4OrganizationsGetOrganizationColumnsResponseDtoToJSONTyped(value?: V4OrganizationsGetOrganizationColumnsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4OrganizationsGetOrganizationColumnsResponseDto.d.ts.map