/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The information of the organization, which provides DRS API implementation. * @export * @interface OrganizationInformation */ export interface OrganizationInformation { /** * The name of the organization. * @type {string} * @memberof OrganizationInformation */ name?: string; /** * The url of organization. * @type {string} * @memberof OrganizationInformation */ url?: string; } /** * Check if a given object implements the OrganizationInformation interface. */ export declare function instanceOfOrganizationInformation(value: object): value is OrganizationInformation; export declare function OrganizationInformationFromJSON(json: any): OrganizationInformation; export declare function OrganizationInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationInformation; export declare function OrganizationInformationToJSON(json: any): OrganizationInformation; export declare function OrganizationInformationToJSONTyped(value?: OrganizationInformation | null, ignoreDiscriminator?: boolean): any;