Skip to content

Instantly share code, notes, and snippets.

@janpauldahlke
Created December 19, 2017 07:03
Show Gist options
  • Save janpauldahlke/d15d04b4e25d3c6a16a38c850aee8e63 to your computer and use it in GitHub Desktop.
Save janpauldahlke/d15d04b4e25d3c6a16a38c850aee8e63 to your computer and use it in GitHub Desktop.
```
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