UNPKG

@devopness/sdk-js

Version:

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

66 lines (65 loc) 1.66 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. */ import { EnvironmentRelation } from './environment-relation'; import { OrganizationRelation } from './organization-relation'; import { ProjectRelation } from './project-relation'; import { RoleRelation } from './role-relation'; import { TeamRelation } from './team-relation'; /** * * @export * @interface TeamMembershipRelation */ export interface TeamMembershipRelation { /** * * @type {TeamRelation} * @memberof TeamMembershipRelation */ team: TeamRelation | null; /** * * @type {RoleRelation} * @memberof TeamMembershipRelation */ role: RoleRelation | null; /** * * @type {OrganizationRelation} * @memberof TeamMembershipRelation */ organization: OrganizationRelation | null; /** * * @type {ProjectRelation} * @memberof TeamMembershipRelation */ project: ProjectRelation | null; /** * * @type {EnvironmentRelation} * @memberof TeamMembershipRelation */ environment: EnvironmentRelation | null; /** * The date and time when the record was created * @type {string} * @memberof TeamMembershipRelation */ created_at: string; /** * The date and time when the record was last updated * @type {string} * @memberof TeamMembershipRelation */ updated_at: string; }