changed a few field names

pull/1/head
Chris Veilleux 2019-02-21 19:10:41 -06:00
parent 67bb8b0488
commit 1fb84348c1
1 changed files with 3 additions and 3 deletions

View File

@ -10,19 +10,19 @@ const accountUrl = '/api/account';
export interface Agreement {
type: string;
signature_date: string;
acceptDate: string;
}
export interface Membership {
type: string;
startDate: string;
duration: string;
stripeCustomerId: string;
}
export interface Account {
id: string;
emailAddress: string;
displayName: string;
username: string;
subscription: Membership;
agreements: Agreement[];
}