The struct with account_address, module_name, and struct_name properties
The MoveStructId
const structObj = {
account_address: "0x1",
module_name: "0x6170746f735f636f696e",
struct_name: "0x4170746f73436f696e",
};
// structId is "0x1::aptos_coin::AptosCoin"
const structId = parseEncodedStruct(structObj);
Convert an encoded struct to a MoveStructId.