/** * 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. */ import type { ModelRow } from './ModelRow'; /** * This object is deprecated and will be removed in future versions of Synapse. * @export * @interface Preview */ export interface Preview { /** * The name of this entity. Must be 256 characters or less. Names may only contain: letters, numbers, spaces, underscores, hyphens, periods, plus signs, apostrophes, and parentheses * @type {string} * @memberof Preview */ name?: string; /** * The description of this entity. Must be 1000 characters or less. * @type {string} * @memberof Preview */ description?: string; /** * The unique immutable ID for this entity. A new ID will be generated for new Entities. Once issued, this ID is guaranteed to never change or be re-issued * @type {string} * @memberof Preview */ id?: string; /** * Synapse employs an Optimistic Concurrency Control (OCC) scheme to handle concurrent updates. Since the E-Tag changes every time an entity is updated it is used to detect when a client's current representation of an entity is out-of-date. * @type {string} * @memberof Preview */ etag?: string; /** * The date this entity was created. * @type {string} * @memberof Preview */ createdOn?: string; /** * The date this entity was last modified. * @type {string} * @memberof Preview */ modifiedOn?: string; /** * The ID of the user that created this entity. * @type {string} * @memberof Preview */ createdBy?: string; /** * The ID of the user that last modified this entity. * @type {string} * @memberof Preview */ modifiedBy?: string; /** * The ID of the Entity that is the parent of this Entity. * @type {string} * @memberof Preview */ parentId?: string; /** * Indicates which implementation of Entity this object represents. The value is the fully qualified class name, e.g. org.sagebionetworks.repo.model.FileEntity. * @type {string} * @memberof Preview */ concreteType: PreviewConcreteTypeEnum; /** * The String value of a preview * @type {string} * @memberof Preview */ previewString?: string; /** * * @type {Array} * @memberof Preview */ headers?: Array; /** * * @type {Array} * @memberof Preview */ rows?: Array; } /** * @export */ export declare const PreviewConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_Preview: "org.sagebionetworks.repo.model.Preview"; }; export type PreviewConcreteTypeEnum = typeof PreviewConcreteTypeEnum[keyof typeof PreviewConcreteTypeEnum]; /** * Check if a given object implements the Preview interface. */ export declare function instanceOfPreview(value: object): value is Preview; export declare function PreviewFromJSON(json: any): Preview; export declare function PreviewFromJSONTyped(json: any, ignoreDiscriminator: boolean): Preview; export declare function PreviewToJSON(json: any): Preview; export declare function PreviewToJSONTyped(value?: Preview | null, ignoreDiscriminator?: boolean): any;