@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
57 lines (56 loc) • 1.1 kB
TypeScript
import InvitationStatus from './InvitationStatus';
/**
* @export
* @class Invitation
*/
export declare class Invitation {
/**
* @type {string}
* @memberof Invitation
*/
id?: string;
/**
* Email address of the tenant. (required)
* @type {string}
* @memberof Invitation
*/
email?: string;
/**
* @type {InvitationStatus}
* @memberof Invitation
*/
status?: InvitationStatus;
/**
* @type {string}
* @memberof Invitation
*/
company?: string;
/**
* @type {string}
* @memberof Invitation
*/
firstName?: string;
/**
* @type {string}
* @memberof Invitation
*/
lastName?: string;
/**
* Creation date of the invitation in UTC format
* @type {Date}
* @memberof Invitation
*/
createdAt?: Date;
/**
* @type {string}
* @memberof Invitation
*/
jobTitle?: string;
/**
* @type {string}
* @memberof Invitation
*/
phone?: string;
constructor(obj?: Partial<Invitation>);
}
export default Invitation;