type CollaboratorsPayment {
    collaborator: Collaborator!
    conversionRate: Float
    createdDate: Date
    id: ID!
    price: TransferWisePrice
    profileId: Int!
    quoteId: String
    recipientId: Int!
    sourceAmount: Float!
    sourceCurrency: String!
    status: CollaboratorsPaymentStatus!
    targetAmount: Float!
    targetCurrency: String!
    transferId: Int!
    transferWiseBatch: TransferWiseBatch!
    transferwiseBatchId: Int!
        @deprecated(reason: "Use transferWiseBatch.id instead")
    transferwiseFee: Float
    wireFee: Float
}
