/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AuthorType } from '../models/AuthorType'; import { CommitFileType } from '../models/CommitFileType'; import { CommiterType } from '../models/CommiterType'; import { RevertedMetadata } from '../models/RevertedMetadata'; import { HttpFile } from '../http/http'; export class RevertResponse { 'committer'?: CommiterType; 'author'?: AuthorType; /** * Comments associated with the commit */ 'comment'?: string | null; /** * Time at which the changes were committed. */ 'commit_time'?: string | null; /** * SHA id associated with the commit */ 'commit_id'?: string | null; /** * Branch where changes were committed */ 'branch'?: string | null; /** * Files that were pushed as part of this commit */ 'committed_files'?: Array | null; /** * Metadata of reverted file of this commit */ 'reverted_metadata'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "committer", "baseName": "committer", "type": "CommiterType", "format": "" }, { "name": "author", "baseName": "author", "type": "AuthorType", "format": "" }, { "name": "comment", "baseName": "comment", "type": "string", "format": "" }, { "name": "commit_time", "baseName": "commit_time", "type": "string", "format": "" }, { "name": "commit_id", "baseName": "commit_id", "type": "string", "format": "" }, { "name": "branch", "baseName": "branch", "type": "string", "format": "" }, { "name": "committed_files", "baseName": "committed_files", "type": "Array", "format": "" }, { "name": "reverted_metadata", "baseName": "reverted_metadata", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return RevertResponse.attributeTypeMap; } public constructor() { } }