UNPKG

@devopness/sdk-js

Version:

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

101 lines (100 loc) 2.52 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 { ProjectRelation } from './project-relation'; import { TeamInvitationStatus } from './team-invitation-status'; import { TeamRelation } from './team-relation'; import { UserRelation } from './user-relation'; /** * * @export * @interface TeamInvitationRelation */ export interface TeamInvitationRelation { /** * The unique UUID of the given invitation * @type {string} * @memberof TeamInvitationRelation */ id: string; /** * The email of the user that has been invited to team * @type {string} * @memberof TeamInvitationRelation */ email: string; /** * * @type {TeamInvitationStatus} * @memberof TeamInvitationRelation */ status: TeamInvitationStatus; /** * Human readable version of the invitation status * @type {string} * @memberof TeamInvitationRelation */ status_human_readable: string; /** * The IP of the user who accepted the invitation * @type {string} * @memberof TeamInvitationRelation */ accepted_from_ip: string | null; /** * * @type {UserRelation} * @memberof TeamInvitationRelation */ created_by_user: UserRelation; /** * * @type {UserRelation} * @memberof TeamInvitationRelation */ user: UserRelation; /** * * @type {TeamRelation} * @memberof TeamInvitationRelation */ team: TeamRelation | null; /** * * @type {ProjectRelation} * @memberof TeamInvitationRelation */ project: ProjectRelation | null; /** * The date and time when the invitation was accepted * @type {string} * @memberof TeamInvitationRelation */ accepted_at: string | null; /** * The date and time when the invitation will expire * @type {string} * @memberof TeamInvitationRelation */ expires_at: string; /** * The date and time when the record was created * @type {string} * @memberof TeamInvitationRelation */ created_at: string; /** * The date and time when the record was last updated * @type {string} * @memberof TeamInvitationRelation */ updated_at: string; }