# APIKeyCreateRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **user_id** | **str** | Id of the user the key will be created for | **name** | **str** | The name for the API key | [optional] **collection_id** | **str** | The id of the collection you want the key to be configured to | [optional] **expires_in** | **str** | Interval of when the API key should expire | [optional] ## Example ```python from h2ogpte.rest.models.api_key_create_request import APIKeyCreateRequest # TODO update the JSON string below json = "{}" # create an instance of APIKeyCreateRequest from a JSON string api_key_create_request_instance = APIKeyCreateRequest.from_json(json) # print the JSON string representation of the object print(APIKeyCreateRequest.to_json()) # convert the object into a dict api_key_create_request_dict = api_key_create_request_instance.to_dict() # create an instance of APIKeyCreateRequest from a dict api_key_create_request_from_dict = APIKeyCreateRequest.from_dict(api_key_create_request_dict) ```