Created
December 19, 2017 07:03
-
-
Save janpauldahlke/d15d04b4e25d3c6a16a38c850aee8e63 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
``` | |
declare type Deal = { | |
id?: string, | |
dealId?: number, | |
invoiceId?: string, | |
paymentToken?: string, | |
createdAt?: string, | |
expiresAt?: string, | |
campaign?: string, | |
owner: Owner, | |
editor?: Editor, | |
generator?: string, | |
status: string, | |
recipient: Recipient, | |
payments?: Payments[], | |
links?: Links[], | |
reference?: Map<string, string>, | |
additionalParams?: Map<string, string>, | |
customerContact?: CustomerContact[], | |
cart: Cart | |
}``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment