# OryClient::WorkspaceApiKey ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **created_at** | **Time** | The API key's creation date | [optional][readonly] | | **expires_at** | **Time** | | [optional] | | **id** | **String** | The key's ID. | [readonly] | | **name** | **String** | The API key's Name Set this to help you remember, for example, where you use the API key. | | | **owner_id** | **String** | The key's owner | [readonly] | | **updated_at** | **Time** | The API key's last update date | [optional][readonly] | | **value** | **String** | The key's value | [optional][readonly] | | **workspace_id** | **String** | The API key's workspace ID | [optional][readonly] | ## Example ```ruby require 'ory-client' instance = OryClient::WorkspaceApiKey.new( created_at: null, expires_at: null, id: null, name: null, owner_id: null, updated_at: null, value: null, workspace_id: null ) ```