See More

# ImportKeypairPayload ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **str** | The name of the key pair that is being created. | **environment_name** | **str** | The name of the environment where the key pair is being created. | **public_key** | **str** | The public key that is being used to import an SSH key pair. | ## Example ```python from hyperstack.models.import_keypair_payload import ImportKeypairPayload # TODO update the JSON string below json = "{}" # create an instance of ImportKeypairPayload from a JSON string import_keypair_payload_instance = ImportKeypairPayload.from_json(json) # print the JSON string representation of the object print(ImportKeypairPayload.to_json()) # convert the object into a dict import_keypair_payload_dict = import_keypair_payload_instance.to_dict() # create an instance of ImportKeypairPayload from a dict import_keypair_payload_form_dict = import_keypair_payload.from_dict(import_keypair_payload_dict) ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)