export interface SetTransferResponseRequest { /** * ID of the transfer transaction, from the 'id' field in the 'data' object of the response. 32-digit hexadecimal. */ id: string; /** * Determines how to handle the transfer. One of the following values: **accept**, **decline**, **cancel** */ status: string; /** * A JSON object defined by the client. */ metadata?: object; } //# sourceMappingURL=SetTransferResponseRequest.d.ts.map