|
| 1 | +# AudienceGroup |
| 2 | + |
| 3 | +Audience group |
| 4 | + |
| 5 | +## Properties |
| 6 | +Name | Type | Description | Notes |
| 7 | +------------ | ------------- | ------------- | ------------- |
| 8 | +**audience_group_id** | **int** | The audience ID. | [optional] |
| 9 | +**type** | [**AudienceGroupType**](AudienceGroupType.md) | | [optional] |
| 10 | +**description** | **str** | The audience's name. | [optional] |
| 11 | +**status** | [**AudienceGroupStatus**](AudienceGroupStatus.md) | | [optional] |
| 12 | +**failed_type** | [**AudienceGroupFailedType**](AudienceGroupFailedType.md) | | [optional] |
| 13 | +**audience_count** | **int** | The number of users included in the audience. | [optional] |
| 14 | +**created** | **int** | When the audience was created (in UNIX time). | [optional] |
| 15 | +**request_id** | **str** | The request ID that was specified when the audience was created. This is only included when `audienceGroup.type` is CLICK or IMP. | [optional] |
| 16 | +**click_url** | **str** | The URL that was specified when the audience was created. This is only included when `audienceGroup.type` is CLICK and link URL is specified. | [optional] |
| 17 | +**is_ifa_audience** | **bool** | The value indicating the type of account to be sent, as specified when creating the audience for uploading user IDs. | [optional] |
| 18 | +**permission** | [**AudienceGroupPermission**](AudienceGroupPermission.md) | | [optional] |
| 19 | +**create_route** | [**AudienceGroupCreateRoute**](AudienceGroupCreateRoute.md) | | [optional] |
| 20 | + |
| 21 | +## Example |
| 22 | + |
| 23 | +```python |
| 24 | +from linebot.v3.audience.models.audience_group import AudienceGroup |
| 25 | + |
| 26 | +# TODO update the JSON string below |
| 27 | +json = "{}" |
| 28 | +# create an instance of AudienceGroup from a JSON string |
| 29 | +audience_group_instance = AudienceGroup.from_json(json) |
| 30 | +# print the JSON string representation of the object |
| 31 | +print AudienceGroup.to_json() |
| 32 | + |
| 33 | +# convert the object into a dict |
| 34 | +audience_group_dict = audience_group_instance.to_dict() |
| 35 | +# create an instance of AudienceGroup from a dict |
| 36 | +audience_group_form_dict = audience_group.from_dict(audience_group_dict) |
| 37 | +``` |
| 38 | +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
| 39 | + |
| 40 | + |
0 commit comments