UNPKG

@devopness/sdk-js

Version:

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

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