-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_analytic_transfer_wallet_tx.go
28 lines (26 loc) · 1.4 KB
/
model_analytic_transfer_wallet_tx.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* QEDIT - Asset Transfers
*
* This SDK provides a programmatic way for interacting with QEDIT's _Asset Transfer_ API. The specification definition file is publicly available [in this repository](https://github.com/QED-it/asset_transfers_dev_guide/).
*
* API version: 1.7.2
* Contact: [email protected]
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package goqedit
type AnalyticTransferWalletTx struct {
// Boolean signifying whether the Assets were transferred to the Wallet in question; false of the Assets were transferred from the Wallet into another
IsIncoming bool `json:"is_incoming,omitempty"`
// The public key of the Wallet the Assets were transferred from
SenderId string `json:"sender_id,omitempty"`
// The address of the Wallet the Assets were transferred to
RecipientAddress string `json:"recipient_address,omitempty"`
// The public key of the Wallet that confirmed receipt of this transfer
ConfirmedBy string `json:"confirmed_by,omitempty"`
// The ID of an Asset Type. It must be a string of length 0 to 40 characters. Allowed characters are lower- and uppercase letters, digits, dot (.), and hyphen (-). It must not end with an hyphen. Asset IDs are case-sensitive.
AssetId string `json:"asset_id,omitempty"`
// The amount of Assets transferred
Amount int32 `json:"amount,omitempty"`
// The private memo attached to the Transfer
Memo string `json:"memo,omitempty"`
}