listCustomerGroups abstract method

  1. @GET('/v2/customers/groups')
Future<ListCustomerGroupsResponse> listCustomerGroups({
  1. @Query('cursor') String? cursor,
  2. @Query('limit') int? limit,
})

Retrieves the list of customer groups of a business.

Implementation

@GET('/v2/customers/groups')
Future<ListCustomerGroupsResponse> listCustomerGroups({
  @Query('cursor') String? cursor,
  @Query('limit') int? limit,
});