UNPKG

@devopness/sdk-js

Version:

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

32 lines (31 loc) 829 B
/** * 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 { TeamInvitationType } from './team-invitation-type'; /** * * @export * @interface InvitationTeamCreate */ export interface InvitationTeamCreate { /** * * @type {TeamInvitationType} * @memberof InvitationTeamCreate */ type: TeamInvitationType; /** * The user email to send the invitation. Must be a valid email address. This field is required when <code>type</code> is <code>private</code>. * @type {string} * @memberof InvitationTeamCreate */ email?: string; }