generated from repo-template/pyci-lint
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation of getChannelMembers (#38)
- Loading branch information
Showing
12 changed files
with
1,074 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# GetChannelMembersRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**channel_no** | **int** | | | ||
**member_update_time** | **int** | | [optional] [default to 0] | ||
**paging_count** | **int** | | [optional] [default to 500] | ||
|
||
## Example | ||
|
||
```python | ||
from line_works.openapi.talk.models.get_channel_members_request import GetChannelMembersRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of GetChannelMembersRequest from a JSON string | ||
get_channel_members_request_instance = GetChannelMembersRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(GetChannelMembersRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
get_channel_members_request_dict = get_channel_members_request_instance.to_dict() | ||
# create an instance of GetChannelMembersRequest from a dict | ||
get_channel_members_request_from_dict = GetChannelMembersRequest.from_dict(get_channel_members_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# GetChannelMembersResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**code** | **int** | | | ||
**message** | **str** | | | ||
**members** | [**List[Member]**](Member.md) | | | ||
|
||
## Example | ||
|
||
```python | ||
from line_works.openapi.talk.models.get_channel_members_response import GetChannelMembersResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of GetChannelMembersResponse from a JSON string | ||
get_channel_members_response_instance = GetChannelMembersResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(GetChannelMembersResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
get_channel_members_response_dict = get_channel_members_response_instance.to_dict() | ||
# create an instance of GetChannelMembersResponse from a dict | ||
get_channel_members_response_from_dict = GetChannelMembersResponse.from_dict(get_channel_members_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Member | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**user_no** | **int** | | | ||
**name** | **str** | | | ||
**i18n_name** | **str** | | | ||
**i18n_names** | **List[object]** | | | ||
**nick_name** | **str** | | | ||
**position** | **str** | | | ||
**i18n_positions** | **List[object]** | | | ||
**group_name** | **str** | | | ||
**i18n_group_names** | **List[object]** | | | ||
**group_position** | **str** | | | ||
**i18n_group_positions** | **List[object]** | | | ||
**photo_hash** | **str** | | | ||
**join** | **bool** | | | ||
**join_time** | **int** | | | ||
**update_time** | **int** | | | ||
**domain_id** | **int** | | | ||
**property_flag** | **int** | | | ||
**domain_name** | **str** | | | ||
**i18n_domain_names** | **List[object]** | | | ||
**service_type** | **str** | | | ||
**relation_status** | **str** | | | ||
**tenant_id** | **int** | | | ||
**guest** | **bool** | | | ||
|
||
## Example | ||
|
||
```python | ||
from line_works.openapi.talk.models.member import Member | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of Member from a JSON string | ||
member_instance = Member.from_json(json) | ||
# print the JSON string representation of the object | ||
print(Member.to_json()) | ||
|
||
# convert the object into a dict | ||
member_dict = member_instance.to_dict() | ||
# create an instance of Member from a dict | ||
member_from_dict = Member.from_dict(member_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.