Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

LtiCredentialsCreation.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

LtiCredentialsCreation

Creation of a couple of LTI 1.x OAuth credentials

Properties

Name Type Description Notes
name str Name of the couple of credentials
lms LmsName

Example

from flat_api.models.lti_credentials_creation import LtiCredentialsCreation

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

# convert the object into a dict
lti_credentials_creation_dict = lti_credentials_creation_instance.to_dict()
# create an instance of LtiCredentialsCreation from a dict
lti_credentials_creation_form_dict = lti_credentials_creation.from_dict(lti_credentials_creation_dict)

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