/** * 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 EntityHeader POJO * @export * @interface EntityHeader */ export interface EntityHeader { /** * The name of the entity * @type {string} * @memberof EntityHeader */ name?: string; /** * The id of the entity * @type {string} * @memberof EntityHeader */ id?: string; /** * The type of the entity * @type {string} * @memberof EntityHeader */ type?: string; /** * The version number of the entity * @type {number} * @memberof EntityHeader */ versionNumber?: number; /** * The user defined version label of the entity * @type {string} * @memberof EntityHeader */ versionLabel?: string; /** * If this version is the latest version of the entity * @type {boolean} * @memberof EntityHeader */ isLatestVersion?: boolean; /** * The ID of the entity that this Entity's ACL is inherited from. * @type {number} * @memberof EntityHeader */ benefactorId?: number; /** * The date this entity was created. * @type {string} * @memberof EntityHeader */ createdOn?: string; /** * The date this entity was last modified. * @type {string} * @memberof EntityHeader */ modifiedOn?: string; /** * The ID of the user that created this entity. * @type {string} * @memberof EntityHeader */ createdBy?: string; /** * The ID of the user that last modified this entity. * @type {string} * @memberof EntityHeader */ modifiedBy?: string; } /** * Check if a given object implements the EntityHeader interface. */ export declare function instanceOfEntityHeader(value: object): value is EntityHeader; export declare function EntityHeaderFromJSON(json: any): EntityHeader; export declare function EntityHeaderFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityHeader; export declare function EntityHeaderToJSON(json: any): EntityHeader; export declare function EntityHeaderToJSONTyped(value?: EntityHeader | null, ignoreDiscriminator?: boolean): any;