1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Aptos Node API
*
* The Aptos Node API is a RESTful API for client applications to interact with the Aptos blockchain.
*
* The version of the OpenAPI document: 1.2.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// EntryFunctionPayload : Payload which runs a single entry function
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct EntryFunctionPayload {
/// Entry function id is string representation of a entry function defined on-chain. Format: `{address}::{module name}::{function name}` Both `module name` and `function name` are case-sensitive.
#[serde(rename = "function")]
pub function: String,
/// Type arguments of the function
#[serde(rename = "type_arguments")]
pub type_arguments: Vec<String>,
/// Arguments of the function
#[serde(rename = "arguments")]
pub arguments: Vec<serde_json::Value>,
}
impl EntryFunctionPayload {
/// Payload which runs a single entry function
pub fn new(function: String, type_arguments: Vec<String>, arguments: Vec<serde_json::Value>) -> EntryFunctionPayload {
EntryFunctionPayload {
function,
type_arguments,
arguments,
}
}
}