You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether to enable availability for client-side SDKs. Defaults to <code>false</code>.
using_mobile_key
bool
Whether to enable availability for mobile SDKs. Defaults to <code>true</code>.
Example
fromlaunchdarkly_api.models.client_side_availability_postimportClientSideAvailabilityPost# TODO update the JSON string belowjson="{}"# create an instance of ClientSideAvailabilityPost from a JSON stringclient_side_availability_post_instance=ClientSideAvailabilityPost.from_json(json)
# print the JSON string representation of the objectprint(ClientSideAvailabilityPost.to_json())
# convert the object into a dictclient_side_availability_post_dict=client_side_availability_post_instance.to_dict()
# create an instance of ClientSideAvailabilityPost from a dictclient_side_availability_post_from_dict=ClientSideAvailabilityPost.from_dict(client_side_availability_post_dict)