pub struct AlterTransactionAction {
pub set_status_action: Option<Box<AlterTransactionSetStatus>>,
pub set_property_action: Option<Box<AlterTransactionSetProperty>>,
pub unset_property_action: Option<Box<AlterTransactionUnsetProperty>>,
}
Expand description
AlterTransactionAction : A single action that could be performed to alter a transaction. This action holds the model definition for all types of specific actions models, this is to minimize difference and compatibility issue across codegen in different languages. When used, only one of the actions should be non-null for each action. If you would like to perform multiple actions, set a list of actions in the AlterTransactionRequest.
Fields§
§set_status_action: Option<Box<AlterTransactionSetStatus>>
§set_property_action: Option<Box<AlterTransactionSetProperty>>
§unset_property_action: Option<Box<AlterTransactionUnsetProperty>>
Implementations§
Source§impl AlterTransactionAction
impl AlterTransactionAction
Sourcepub fn new() -> AlterTransactionAction
pub fn new() -> AlterTransactionAction
A single action that could be performed to alter a transaction. This action holds the model definition for all types of specific actions models, this is to minimize difference and compatibility issue across codegen in different languages. When used, only one of the actions should be non-null for each action. If you would like to perform multiple actions, set a list of actions in the AlterTransactionRequest.
Trait Implementations§
Source§impl Clone for AlterTransactionAction
impl Clone for AlterTransactionAction
Source§fn clone(&self) -> AlterTransactionAction
fn clone(&self) -> AlterTransactionAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more