usecrate::application::interaction::modal::ModalInteractionComponent;/// User filled in [`ActionRow`].
////// [`ActionRow`]: crate::channel::message::component::ActionRow
#[derive(Clone, Debug, Eq, PartialEq)]pubstructModalInteractionActionRow{/// Unique identifier for the component.
pubid:i32,
/// List of components.
pubcomponents:Vec<ModalInteractionComponent>,
}