@coinbase/cdp-sdk
Version:
SDK for interacting with the Coinbase Developer Platform Wallet API
15 lines • 681 B
JavaScript
// This file was auto-generated by Fern from our API Definition.
export var TransferRequest;
(function (TransferRequest) {
/**
* Specifies whether the given amount is to be received by the target or taken from the source.
*
* - `target`: The transfer `target` receives the exact value specified in `amount`. Fees are added to the amount taken from the transfer `source`.
* - `source`: The transfer `target` receives the value specified in `amount`, minus any fees.
*/
TransferRequest.AmountType = {
Target: "target",
Source: "source",
};
})(TransferRequest || (TransferRequest = {}));
//# sourceMappingURL=TransferRequest.js.map