Created
September 3, 2019 18:26
-
-
Save damianesteban/4ef91ecb40787e9645663525e66c8ed8 to your computer and use it in GitHub Desktop.
Updated userdata model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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