Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.1
2.6.2
5 changes: 4 additions & 1 deletion sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"info": {
"version": "2.6.1",
"version": "2.6.2",
"title": "All Circle APIs",
"description": "Circle's General, Core Functionality, Payments, Payouts, Accounts, and Crypto Payments APIs bundled into one OpenAPI Specification."
},
Expand Down Expand Up @@ -8777,6 +8777,9 @@
"description": "The blockchain address.",
"example": "0x8381470ED67C3802402dbbFa0058E8871F017A6F"
},
"addressTag": {
"$ref": "#/components/schemas/AddressTag"
},
"chain": {
"$ref": "#/components/schemas/Chain"
}
Expand Down
6 changes: 6 additions & 0 deletions src/generated/models/crypto-refund-destination.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ export interface CryptoRefundDestination {
* @memberof CryptoRefundDestination
*/
address: string;
/**
* The secondary identifier for a blockchain address. An example of this is the memo field on the Stellar network, which can be text, id, or hash format.
* @type {string}
* @memberof CryptoRefundDestination
*/
addressTag?: string | null;
/**
*
* @type {Chain}
Expand Down