/** * Apimatic APILib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { Platforms } from './platforms.js'; /** The Code Generation structure encapsulates all the the details of an SDK generation performed against an API Entity */ export interface ApiEntityCodeGeneration { /** Unique Code Generation Identifier */ id: string; /** The structure contains platforms that APIMatic CodeGen can generate SDKs and Docs in. */ template: Platforms; /** The generated SDK */ generatedFile: string; /** Generation Date and Time */ generatedOn: string; /** The md5 hash of the API Description */ hashCode: string; /** Generation Source */ codeGenerationSource: string; /** Generation Version */ codeGenVersion: string; /** Generation Status */ success: boolean; /** Unique API Entity Identifier */ apiEntityId: string; additionalProperties?: Record; } export declare const apiEntityCodeGenerationSchema: Schema; //# sourceMappingURL=apiEntityCodeGeneration.d.ts.map