Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.67 KB

File metadata and controls

32 lines (23 loc) · 1.67 KB

APIServiceIntegrationSecretLinks

Specifies link relations (see Web Linking) available for the current status of an application using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of related resources and lifecycle operations.

Properties

Name Type Description Notes
activate HrefObjectActivateLink [optional]
deactivate HrefObjectDeactivateLink [optional]
delete HrefObjectDeleteLink [optional]

Example

from okta.models.api_service_integration_secret_links import APIServiceIntegrationSecretLinks

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

# convert the object into a dict
api_service_integration_secret_links_dict = api_service_integration_secret_links_instance.to_dict()
# create an instance of APIServiceIntegrationSecretLinks from a dict
api_service_integration_secret_links_from_dict = APIServiceIntegrationSecretLinks.from_dict(api_service_integration_secret_links_dict)

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