Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 996 Bytes

File metadata and controls

30 lines (21 loc) · 996 Bytes

FeaturesResponse

Properties

Name Type Description Notes
google_login_enabled bool
default_frontend_language SupportedLanguage

Example

from ksapi.models.features_response import FeaturesResponse

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

# convert the object into a dict
features_response_dict = features_response_instance.to_dict()
# create an instance of FeaturesResponse from a dict
features_response_from_dict = FeaturesResponse.from_dict(features_response_dict)

[Back to Model list] [Back to API list] [Back to README]