Struct croncat_sdk_tasks::types::Task
source · pub struct Task {
pub owner_addr: Addr,
pub interval: Interval,
pub boundary: BoundaryValidated,
pub stop_on_fail: bool,
pub amount_for_one_task: AmountForOneTask,
pub actions: Vec<Action>,
pub queries: Vec<CroncatQuery>,
pub transforms: Vec<Transform>,
pub version: String,
}
Fields§
§owner_addr: Addr
Entity responsible for this task, can change task details
interval: Interval
Scheduling definitions
boundary: BoundaryValidated
§stop_on_fail: bool
Defines if this task can continue until balance runs out
amount_for_one_task: AmountForOneTask
§actions: Vec<Action>
The cosmos message to call, if time or rules are met
queries: Vec<CroncatQuery>
A prioritized list of messages that can be chained decision matrix required to complete before task action Rules MUST return the ResolverResponse type
transforms: Vec<Transform>
§version: String
Implementations§
source§impl Task
impl Task
sourcepub fn to_hash_vec(&self, prefix: &str) -> Vec<u8>
pub fn to_hash_vec(&self, prefix: &str) -> Vec<u8>
Get the hash of a task based on parameters
pub fn recurring(&self) -> bool
pub fn with_queries(&self) -> bool
pub fn into_response(self, prefix: &str) -> TaskResponse
Trait Implementations§
source§impl<'de> Deserialize<'de> for Task
impl<'de> Deserialize<'de> for Task
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for Task
impl JsonSchema for Task
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read more