# MailSlurpClient::Inbox ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **created_at** | **DateTime** | When was the inbox created | [optional] **description** | **String** | Optional description of an inbox for labelling purposes | [optional] **email_address** | **String** | The inbox's email address. Send an email to this address and the inbox will receive and store it for you. To retrieve the email use the Inbox and Email Controller endpoints. | [optional] **expires_at** | **DateTime** | When, if ever, will the inbox expire and be deleted. If null then this inbox is permanent and the emails in it won't be deleted. | [optional] **favourite** | **Boolean** | Is the inbox favourited | [optional] **id** | **String** | ID of the inbox | [optional] **name** | **String** | Optional name of the inbox. Displayed in the dashboard for easier search | [optional] **tags** | **Array<String>** | Tags that inbox has been tagged with | [optional] **user_id** | **String** | ID of user that inbox belongs to | [optional] ## Code Sample ```ruby require 'MailSlurpClient' instance = MailSlurpClient::Inbox.new(created_at: null, description: null, email_address: null, expires_at: null, favourite: null, id: null, name: null, tags: null, user_id: null) ```