/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ReqGithubCred */ export interface ReqGithubCred { /** * * @type {string} * @memberof ReqGithubCred */ personal_access_token?: string; /** * * @type {string} * @memberof ReqGithubCred */ username?: string; } export declare function ReqGithubCredFromJSON(json: any): ReqGithubCred; export declare function ReqGithubCredFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqGithubCred; export declare function ReqGithubCredToJSON(value?: ReqGithubCred | null): any;