Expand description
This is a model struct for ListCustomerGroupsParameters (query parameters)
Fields
cursor: Option<String>
A pagination cursor returned by a previous call to this endpoint. Provide this cursor to retrieve the next set of results for your original query.
For more information, see Pagination.
limit: Option<i32>
The maximum number of results to return in a single page. This limit is advisory. The
response might contain more or fewer results. If the limit is less than 1 or greater than
50, Square returns a 400 VALUE_TOO_LOW
or 400 VALUE_TOO_HIGH
error. The default value is
50.
For more information, see Pagination.
Implementations
sourceimpl ListCustomerGroupsParameters
impl ListCustomerGroupsParameters
pub fn to_query_string(&self) -> String
Trait Implementations
sourceimpl Clone for ListCustomerGroupsParameters
impl Clone for ListCustomerGroupsParameters
sourcefn clone(&self) -> ListCustomerGroupsParameters
fn clone(&self) -> ListCustomerGroupsParameters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListCustomerGroupsParameters
impl Debug for ListCustomerGroupsParameters
sourceimpl Default for ListCustomerGroupsParameters
impl Default for ListCustomerGroupsParameters
sourcefn default() -> ListCustomerGroupsParameters
fn default() -> ListCustomerGroupsParameters
Returns the “default value” for a type. Read more
sourceimpl From<ListCustomerGroupsParameters> for String
impl From<ListCustomerGroupsParameters> for String
sourcefn from(list_customer_groups_parameters: ListCustomerGroupsParameters) -> Self
fn from(list_customer_groups_parameters: ListCustomerGroupsParameters) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ListCustomerGroupsParameters
impl Send for ListCustomerGroupsParameters
impl Sync for ListCustomerGroupsParameters
impl Unpin for ListCustomerGroupsParameters
impl UnwindSafe for ListCustomerGroupsParameters
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more