-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_analytic_issue_wallet_tx.go
30 lines (28 loc) · 1.44 KB
/
model_analytic_issue_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
29
30
/*
* 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 AnalyticIssueWalletTx struct {
// Boolean signifying whether the Assets were issued to the Wallet in question
IsIncoming bool `json:"is_incoming,omitempty"`
// Boolean signifying whether the Wallet used to issue the Assets is the Wallet in question
IssuedBySelf bool `json:"issued_by_self,omitempty"`
// The public key of the Wallet that was used to issue the Assets
SenderId string `json:"sender_id,omitempty"`
// The Address the Assets were issued to
RecipientAddress string `json:"recipient_address,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 issued
Amount int32 `json:"amount,omitempty"`
// Boolean signifying whether the Issuance was done confidentially
IsConfidential bool `json:"is_confidential,omitempty"`
// The private memo attached to the Issuance
Memo string `json:"memo,omitempty"`
}