Sha256: 0e06d99d52c928df20137229efa2b1741b57db74c82d3ce84acca55a6634b4ef
Contents?: true
Size: 1.24 KB
Versions: 17
Compression:
Stored size: 1.24 KB
Contents
# MuxRuby::Space ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **String** | Unique identifier for the space. Max 255 characters. | | | **created_at** | **String** | Time the space was created, defined as a Unix timestamp (seconds since epoch). | | | **type** | [**SpaceType**](SpaceType.md) | | [default to 'server'] | | **status** | [**SpaceStatus**](SpaceStatus.md) | | | | **passthrough** | **String** | Arbitrary user-supplied metadata that will be included in the space details and related webhooks. Max: 255 characters. | [optional] | | **broadcasts** | [**Array<Broadcast>**](Broadcast.md) | An array of broadcast destinations. | [optional] | | **active_session_id** | **String** | Unique identifier for the current lifecycle of the space. Only set when the space is `active` and is set to a new value each time the space transitions from `idle` to `active`. This value is useful for logging and debugging issues. Max 255 characters. | [optional] | ## Example ```ruby require 'mux_ruby' instance = MuxRuby::Space.new( id: null, created_at: null, type: null, status: null, passthrough: null, broadcasts: null, active_session_id: null ) ```
Version data entries
17 entries across 17 versions & 1 rubygems