1use clap::Subcommand; 2 3#[derive(Subcommand, Clone)] 4pub enum ConfirmCommand { 5 OrgMember { 6 #[arg(long, help = "Organization id for an organization object.")] 7 organizationid: String, 8 }, 9}