UNPKG

@devopness/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

43 lines (42 loc) 1.04 kB
/** * devopness API * Devopness API - Painless essential DevOps to everyone * * The version of the OpenAPI document: latest * * * 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 RepositoryRelation */ export interface RepositoryRelation { /** * The name of the repository * @type {string} * @memberof RepositoryRelation */ name: string; /** * The name of the user/account on the Version Control System * @type {string} * @memberof RepositoryRelation */ user_name: string; /** * The fully qualified repository name. Usually composed of user_name/name * @type {string} * @memberof RepositoryRelation */ full_name: string; /** * The URL for viewing repository details on the provider\'s web application * @type {string} * @memberof RepositoryRelation */ html_url: string; }