square_api_client/models/update_customer_group_request.rs
1//! Request body struct for the Update Customer Group API
2
3use serde::Serialize;
4
5use super::CustomerGroup;
6
7/// This is a model struct for UpdateCustomerGroupRequest type.
8#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
9pub struct UpdateCustomerGroupRequest {
10 /// The [CustomerGroup] object including all the updates you want to make.
11 pub group: CustomerGroup,
12}