Serializer to redeem a plex token
| Name | Type | Description | Notes |
|---|---|---|---|
| plex_token | str |
from authentik_client.models.plex_token_redeem_request import PlexTokenRedeemRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PlexTokenRedeemRequest from a JSON string
plex_token_redeem_request_instance = PlexTokenRedeemRequest.from_json(json)
# print the JSON string representation of the object
print(PlexTokenRedeemRequest.to_json())
# convert the object into a dict
plex_token_redeem_request_dict = plex_token_redeem_request_instance.to_dict()
# create an instance of PlexTokenRedeemRequest from a dict
plex_token_redeem_request_from_dict = PlexTokenRedeemRequest.from_dict(plex_token_redeem_request_dict)