github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/transaction_asset_freeze.go (about) 1 package models 2 3 // TransactionAssetFreeze fields for an asset freeze transaction. 4 // Definition: 5 // data/transactions/asset.go : AssetFreezeTxnFields 6 type TransactionAssetFreeze struct { 7 // Address (fadd) Address of the account whose asset is being frozen or thawed. 8 Address string `json:"address"` 9 10 // AssetId (faid) ID of the asset being frozen or thawed. 11 AssetId uint64 `json:"asset-id"` 12 13 // NewFreezeStatus (afrz) The new freeze status. 14 NewFreezeStatus bool `json:"new-freeze-status"` 15 }