docs/GroupResponseFields.md in messente_api-1.4.0 vs docs/GroupResponseFields.md in messente_api-2.1.0
- old
+ new
@@ -1,23 +1,24 @@
# MessenteApi::GroupResponseFields
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **String** | Id string in UUID format |
-**name** | **String** | The name of the group |
-**created_on** | **String** | When the group was created | [optional]
-**contacts_count** | **Integer** | The count of contacts in the group |
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **id** | **String** | Id string in UUID format | |
+| **name** | **String** | The name of the group | |
+| **created_on** | **String** | When the group was created | [optional] |
+| **contacts_count** | **Integer** | The count of contacts in the group | |
-## Code Sample
+## Example
```ruby
-require 'MessenteApi'
+require 'messente_api'
-instance = MessenteApi::GroupResponseFields.new(id: null,
- name: null,
- created_on: null,
- contacts_count: null)
+instance = MessenteApi::GroupResponseFields.new(
+ id: null,
+ name: null,
+ created_on: null,
+ contacts_count: null
+)
```
-