/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 { MemberOrganization } from './MemberOrganization.js'; import type { OrganizationSettings } from './OrganizationSettings.js'; /** * * @export * @interface OrganizationRead */ export interface OrganizationRead { /** * * @type {string} * @memberof OrganizationRead */ id?: string; /** * * @type {string} * @memberof OrganizationRead */ key?: string; /** * * @type {string} * @memberof OrganizationRead */ name?: string; /** * * @type {OrganizationSettings} * @memberof OrganizationRead */ settings?: OrganizationSettings; /** * * @type {{ [key: string]: MemberOrganization; }} * @memberof OrganizationRead */ members?: { [key: string]: MemberOrganization; }; /** * * @type {string} * @memberof OrganizationRead */ createdAt?: string; /** * * @type {string} * @memberof OrganizationRead */ updatedAt?: string; } /** * Check if a given object implements the OrganizationRead interface. */ export declare function instanceOfOrganizationRead(value: object): value is OrganizationRead; export declare function OrganizationReadFromJSON(json: any): OrganizationRead; export declare function OrganizationReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationRead; export declare function OrganizationReadToJSON(json: any): OrganizationRead; export declare function OrganizationReadToJSONTyped(value?: OrganizationRead | null, ignoreDiscriminator?: boolean): any;