/** * 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. */ /** * * @export */ export declare const Pets: { readonly CAT: "CAT"; readonly DOG: "DOG"; readonly FISH: "FISH"; }; export type Pets = typeof Pets[keyof typeof Pets]; export declare function instanceOfPets(value: any): boolean; export declare function PetsFromJSON(json: any): Pets; export declare function PetsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pets; export declare function PetsToJSON(value?: Pets | null): any; export declare function PetsToJSONTyped(value: any, ignoreDiscriminator: boolean): Pets;