/** * 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 { CommiterType } from '../models/CommiterType'; import { HttpFile } from '../http/http'; export class CommitHistoryResponse { 'committer': CommiterType; 'author': AuthorType; /** * Comments associated with the commit */ 'comment': string; /** * Time at which the changes were committed. */ 'commit_time': string; /** * SHA id associated with the commit */ 'commit_id': string; /** * Branch where changes were committed */ 'branch': string; 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": "" } ]; static getAttributeTypeMap() { return CommitHistoryResponse.attributeTypeMap; } public constructor() { } }