/** * 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. */ /** * Metadata for an image in a Docker Repository: A digest and optional tag. * @export * @interface DockerCommit */ export interface DockerCommit { /** * A user supplied name for a specific version of a repository. * @type {string} * @memberof DockerCommit */ tag?: string; /** * A unique id for the commit, generated by hashing its content. * @type {string} * @memberof DockerCommit */ digest?: string; /** * The date this commit was created. * @type {string} * @memberof DockerCommit */ createdOn?: string; } /** * Check if a given object implements the DockerCommit interface. */ export declare function instanceOfDockerCommit(value: object): value is DockerCommit; export declare function DockerCommitFromJSON(json: any): DockerCommit; export declare function DockerCommitFromJSONTyped(json: any, ignoreDiscriminator: boolean): DockerCommit; export declare function DockerCommitToJSON(json: any): DockerCommit; export declare function DockerCommitToJSONTyped(value?: DockerCommit | null, ignoreDiscriminator?: boolean): any;