Skip to content

Commit

Permalink
Update visitor interface
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gubert committed Aug 28, 2019
1 parent b05dbd6 commit e7da746
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/definition/livechat/IVisitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ import { IVisitorEmail } from './IVisitorEmail';
import { IVisitorPhone } from './IVisitorPhone';

export interface IVisitor {
id: string;
department: string;
id?: string;
token: string;
username: string;
updatedAt: Date;
name: string;
token: string;
phone: Array<IVisitorPhone>;
department?: string;
phone?: Array<IVisitorPhone>;
visitorEmails: Array<IVisitorEmail>;
customFields?: { [key: string]: any };
}

0 comments on commit e7da746

Please sign in to comment.