Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.75 KB

File metadata and controls

36 lines (27 loc) · 1.75 KB

ApplicationVersionRep

Properties

Name Type Description Notes
access Access [optional]
links Dict[str, Link] The location and content type of related resources [optional]
version int Version of the application version [optional]
auto_added bool Whether the application version was automatically created, because it was included in a context when a LaunchDarkly SDK evaluated a feature flag, or if the application version was created through the LaunchDarkly UI or REST API.
creation_date int [optional]
key str The unique identifier of this application version
name str The name of this version
supported bool Whether this version is supported. Only applicable if the application <code>kind</code> is <code>mobile</code>. [optional]

Example

from launchdarkly_api.models.application_version_rep import ApplicationVersionRep

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

# convert the object into a dict
application_version_rep_dict = application_version_rep_instance.to_dict()
# create an instance of ApplicationVersionRep from a dict
application_version_rep_from_dict = ApplicationVersionRep.from_dict(application_version_rep_dict)

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