UNPKG

@apideck/node

Version:
34 lines (33 loc) 923 B
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Details of the branch for which the job is created. * @export * @interface Branch */ export interface Branch { /** * A unique identifier for an object. * @type {string} * @memberof Branch */ readonly id?: string; /** * Name of the branch. * @type {string} * @memberof Branch */ name?: string; } export declare function BranchFromJSON(json: any): Branch; export declare function BranchFromJSONTyped(json: any, ignoreDiscriminator: boolean): Branch; export declare function BranchToJSON(value?: Branch | null): any;