Skip to content

Instantly share code, notes, and snippets.

@damianesteban
Created September 3, 2019 18:26
Show Gist options
  • Select an option

  • Save damianesteban/4ef91ecb40787e9645663525e66c8ed8 to your computer and use it in GitHub Desktop.

Select an option

Save damianesteban/4ef91ecb40787e9645663525e66c8ed8 to your computer and use it in GitHub Desktop.

Revisions

  1. damianesteban created this gist Sep 3, 2019.
    17 changes: 17 additions & 0 deletions userdata.ts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    export interface UserData {
    videoSessionId: string;
    patient: {
    firstName: string;
    lastName: string;
    email: string;
    };
    provider: {
    firstName: string;
    lastName: string;
    email: string;
    };
    company: {
    name: string;
    logoImageUrl: string;
    };
    }