/** * 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. */ /** * JSON schema for environment descriptor POJO * @export * @interface EnvironmentDescriptor */ export interface EnvironmentDescriptor { /** * type the type to set * @type {string} * @memberof EnvironmentDescriptor */ type?: string; /** * name the name to set * @type {string} * @memberof EnvironmentDescriptor */ name?: string; /** * quantifier the quantifier to set * @type {string} * @memberof EnvironmentDescriptor */ quantifier?: string; } /** * Check if a given object implements the EnvironmentDescriptor interface. */ export declare function instanceOfEnvironmentDescriptor(value: object): value is EnvironmentDescriptor; export declare function EnvironmentDescriptorFromJSON(json: any): EnvironmentDescriptor; export declare function EnvironmentDescriptorFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnvironmentDescriptor; export declare function EnvironmentDescriptorToJSON(json: any): EnvironmentDescriptor; export declare function EnvironmentDescriptorToJSONTyped(value?: EnvironmentDescriptor | null, ignoreDiscriminator?: boolean): any;