Skip to content

Instantly share code, notes, and snippets.

@damianesteban
Created September 3, 2019 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damianesteban/4ef91ecb40787e9645663525e66c8ed8 to your computer and use it in GitHub Desktop.
Save damianesteban/4ef91ecb40787e9645663525e66c8ed8 to your computer and use it in GitHub Desktop.
Updated userdata model
export interface UserData {
videoSessionId: string;
patient: {
firstName: string;
lastName: string;
email: string;
};
provider: {
firstName: string;
lastName: string;
email: string;
};
company: {
name: string;
logoImageUrl: string;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment