@coinbase/cdp-sdk
Version:
SDK for interacting with the Coinbase Developer Platform Wallet API
17 lines (14 loc) • 426 B
text/typescript
// This file was auto-generated by Fern from our API Definition.
import type * as CoinbaseApi from "../../../../index.js";
/**
* @example
* ```ts
* {
* depositDestinationId: "depositDestination_af2937b0-9846-4fe7-bfe9-ccc22d935114"
* }
* ```
*/
export interface GetDepositDestinationByIdRequest {
/** The ID of the deposit address to retrieve. */
depositDestinationId: CoinbaseApi.DepositDestinationId;
}