omniflix_std/types/cosmos/upgrade/module/v1.rs
1use omniflix_std_derive::CosmwasmExt;
2/// Module is the config object of the upgrade module.
3#[allow(clippy::derive_partial_eq_without_eq)]
4#[derive(
5 Clone,
6 PartialEq,
7 Eq,
8 ::prost::Message,
9 ::serde::Serialize,
10 ::serde::Deserialize,
11 ::schemars::JsonSchema,
12 CosmwasmExt,
13)]
14#[proto_message(type_url = "/cosmos.upgrade.module.v1.Module")]
15pub struct Module {
16 /// authority defines the custom module authority. If not set, defaults to the governance module.
17 #[prost(string, tag = "1")]
18 pub authority: ::prost::alloc::string::String,
19}