/** * 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 VersionInfo POJO * @export * @interface VersionInfo */ export interface VersionInfo { /** * The id of the entity * @type {string} * @memberof VersionInfo */ id?: string; /** * The version number of the entity * @type {number} * @memberof VersionInfo */ versionNumber?: number; /** * The user defined version label of the entity * @type {string} * @memberof VersionInfo */ versionLabel?: string; /** * The user defined version label of the entity * @type {string} * @memberof VersionInfo */ versionComment?: string; /** * If this version is the latest version of the entity * @type {boolean} * @memberof VersionInfo */ isLatestVersion?: boolean; /** * The display name of the user that last modified this entity. * @type {string} * @memberof VersionInfo */ modifiedBy?: string; /** * The size of the associated file (when applicable and available). * @type {string} * @memberof VersionInfo */ contentSize?: string; /** * Calculated md5 of the associated file (when applicable and available). * @type {string} * @memberof VersionInfo */ contentMd5?: string; /** * The file handle id of the associated file (when applicable and available). * @type {string} * @memberof VersionInfo */ fileHandleId?: string; /** * The user that last modified this entity. * @type {string} * @memberof VersionInfo */ modifiedByPrincipalId?: string; /** * The date this entity was last modified. * @type {string} * @memberof VersionInfo */ modifiedOn?: string; } /** * Check if a given object implements the VersionInfo interface. */ export declare function instanceOfVersionInfo(value: object): value is VersionInfo; export declare function VersionInfoFromJSON(json: any): VersionInfo; export declare function VersionInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionInfo; export declare function VersionInfoToJSON(json: any): VersionInfo; export declare function VersionInfoToJSONTyped(value?: VersionInfo | null, ignoreDiscriminator?: boolean): any;