MsgSetIsArchived
MsgSetIsArchived
Overview
Authorization & Permissions
Proto Definition
message MsgSetIsArchived {
option (cosmos.msg.v1.signer) = "creator";
option (amino.name) = "badges/SetIsArchived";
// Address of the creator.
string creator = 1;
// ID of the collection.
string collectionId = 2 [(gogoproto.customtype) = "Uint", (gogoproto.nullable) = false];
// New isArchived status to set.
bool isArchived = 3;
// Permission to archive collection
repeated ActionPermission canArchiveCollection = 4;
}
message MsgSetIsArchivedResponse {
// ID of the collection.
string collectionId = 1 [(gogoproto.customtype) = "Uint", (gogoproto.nullable) = false];
}Usage Example
JSON Example
Related Messages
Last updated