OBJECT

FreelancePayment

link GraphQL Schema definition

1type FreelancePayment {
2
3breakdown: FreelancePaymentBreakdown
4
5currency: String!
6
7id: Int!
8
9modifiedOn: Int!
10
11netAmount: Float
12
13paymentIntent: PaymentIntent
14
15project: FreelanceProject
16
17# Deprecated. use Invoice instead
18receiptUrl: String
19
20recipient: User
21
22sender: User
23
24status: FreelancePaymentStatus!
25
26type: FreelancePaymentType!
27
28unitAmount: Float!
29
30}