pub struct ContractBalancesConnectionArgs {
pub after: Option<String>,
pub before: Option<String>,
pub first: Option<i32>,
pub last: Option<i32>,
/* private fields */
}
Fields§
§after: Option<String>
Skip until asset id (forward pagination)
before: Option<String>
Skip until asset id (backward pagination)
first: Option<i32>
Retrieve the first n asset balances in order (forward pagination)
last: Option<i32>
Retrieve the last n asset balances in order (backward pagination).
Can’t be used at the same time as first
.
Trait Implementations§
source§impl From<(ContractId, PaginationRequest<String>)> for ContractBalancesConnectionArgs
impl From<(ContractId, PaginationRequest<String>)> for ContractBalancesConnectionArgs
source§fn from(r: (ContractId, PaginationRequest<String>)) -> Self
fn from(r: (ContractId, PaginationRequest<String>)) -> Self
Converts to this type from the input type.
source§impl QueryVariables for ContractBalancesConnectionArgs
impl QueryVariables for ContractBalancesConnectionArgs
§type Fields = ContractBalancesConnectionArgsFields
type Fields = ContractBalancesConnectionArgsFields
A struct that determines which variables are available when using this struct.