/** * 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. */ /** * Array of annotation keys * @export * @interface Keys */ export interface Keys { /** * Array of annotation keys * @type {Array} * @memberof Keys */ keys: Array; } /** * Check if a given object implements the Keys interface. */ export declare function instanceOfKeys(value: object): value is Keys; export declare function KeysFromJSON(json: any): Keys; export declare function KeysFromJSONTyped(json: any, ignoreDiscriminator: boolean): Keys; export declare function KeysToJSON(json: any): Keys; export declare function KeysToJSONTyped(value?: Keys | null, ignoreDiscriminator?: boolean): any;