Skip to content

AudienceExtend

Properties

NameTypeDescriptionNotes
quantityint[optional] [default to 1]

Example

python
from syntheticusers.models.audience_extend import AudienceExtend

# TODO update the JSON string below
json = "{}"
# create an instance of AudienceExtend from a JSON string
audience_extend_instance = AudienceExtend.from_json(json)
# print the JSON string representation of the object
print(AudienceExtend.to_json())

# convert the object into a dict
audience_extend_dict = audience_extend_instance.to_dict()
# create an instance of AudienceExtend from a dict
audience_extend_from_dict = AudienceExtend.from_dict(audience_extend_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.