github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/ExternalLoginInformation.md (about) 1 # ExternalLoginInformation 2 3 4 ## Properties 5 6 Name | Type | Description | Notes 7 ------------ | ------------- | ------------- | ------------- 8 **token_expiration_duration** | **int** | | [optional] 9 **identity_request** | **object** | | 10 11 ## Example 12 13 ```python 14 from lakefs_sdk.models.external_login_information import ExternalLoginInformation 15 16 # TODO update the JSON string below 17 json = "{}" 18 # create an instance of ExternalLoginInformation from a JSON string 19 external_login_information_instance = ExternalLoginInformation.from_json(json) 20 # print the JSON string representation of the object 21 print ExternalLoginInformation.to_json() 22 23 # convert the object into a dict 24 external_login_information_dict = external_login_information_instance.to_dict() 25 # create an instance of ExternalLoginInformation from a dict 26 external_login_information_form_dict = external_login_information.from_dict(external_login_information_dict) 27 ``` 28 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 29 30