OBJECT

SourceFilePurchase

link GraphQL Schema definition

1type SourceFilePurchase {
2
3buyer: User
4
5currency: String
6
7id: Int!
8
9modifiedOn: Int!
10
11paymentIntent: PaymentIntent
12
13project: Project
14
15seller: User
16
17sourceFile: SourceFile
18
19status: SourceFilePaymentStatus!
20
21unitAmount: Float
22
23}