-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_task_data.go
24 lines (22 loc) · 993 Bytes
/
model_task_data.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
/*
* 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
// An object that includes additional request details
type TaskData struct {
// The public key of the sender of the confirmation request
SenderPublicKey string `json:"sender_public_key,omitempty"`
// The public key for the confirmation request receiver
RequireConfirmationFrom string `json:"require_confirmation_from,omitempty"`
// The address the request was sent to
RecipientAddress string `json:"recipient_address,omitempty"`
AssetId string `json:"asset_id,omitempty"`
Amount int32 `json:"amount,omitempty"`
WalletId string `json:"wallet_id,omitempty"`
}