/** * 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 * @interface FieldDescription */ export interface FieldDescription { /** * Name of field * @type {string} * @memberof FieldDescription */ name?: string; /** * Type of field * @type {string} * @memberof FieldDescription */ type?: string; /** * Bucket where the field resides * @type {string} * @memberof FieldDescription */ bucket?: string; } /** * Check if a given object implements the FieldDescription interface. */ export declare function instanceOfFieldDescription(value: object): value is FieldDescription; export declare function FieldDescriptionFromJSON(json: any): FieldDescription; export declare function FieldDescriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FieldDescription; export declare function FieldDescriptionToJSON(json: any): FieldDescription; export declare function FieldDescriptionToJSONTyped(value?: FieldDescription | null, ignoreDiscriminator?: boolean): any;