Class MultiplayBuildConfigurationListItem
A build configuration for configuring game builds to run on servers.
Inherited Members
Namespace: Unity.Services.Apis.Admin.Multiplay
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "multiplay.buildConfigurationListItem")]
[Preserve]
public class MultiplayBuildConfigurationListItem
Constructors
MultiplayBuildConfigurationListItem(long, string, DateTime, string, string, long, string, DateTime, long)
Initializes a new instance of the Multiplay
Declaration
[Preserve]
public MultiplayBuildConfigurationListItem(long buildID = 0, string buildName = null, DateTime createdAt = default, string fleetID = null, string fleetName = null, long id = 0, string name = null, DateTime updatedAt = default, long version = 0)
Parameters
Type | Name | Description |
---|---|---|
long | buildID | ID of the build associated with the build configuration. (required). |
string | buildName | Name of the build associated with the build configuration. (required). |
Date |
createdAt | Date of creation. Only supported for version >= 4.. |
string | fleetID | ID of the fleet associated with the build configuration.. |
string | fleetName | Name of the fleet associated with the build configuration.. |
long | id | ID of the build configuration. (required). |
string | name | Name of the build configuration. (required). |
Date |
updatedAt | Date of last update. Only supported for version >= 4.. |
long | version | Version of the build configuration (required). |
Properties
BuildID
ID of the build associated with the build configuration.
Declaration
[DataMember(Name = "buildID", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public long BuildID { get; set; }
Property Value
Type | Description |
---|---|
long | ID of the build associated with the build configuration. |
BuildName
Name of the build associated with the build configuration.
Declaration
[DataMember(Name = "buildName", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string BuildName { get; set; }
Property Value
Type | Description |
---|---|
string | Name of the build associated with the build configuration. |
CreatedAt
Date of creation. Only supported for version >= 4.
Declaration
[DataMember(Name = "createdAt", EmitDefaultValue = false)]
[Preserve]
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
Date |
Date of creation. Only supported for version >= 4. |
FleetID
ID of the fleet associated with the build configuration.
Declaration
[DataMember(Name = "fleetID", EmitDefaultValue = false)]
[Preserve]
public string FleetID { get; set; }
Property Value
Type | Description |
---|---|
string | ID of the fleet associated with the build configuration. |
FleetName
Name of the fleet associated with the build configuration.
Declaration
[DataMember(Name = "fleetName", EmitDefaultValue = false)]
[Preserve]
public string FleetName { get; set; }
Property Value
Type | Description |
---|---|
string | Name of the fleet associated with the build configuration. |
Id
ID of the build configuration.
Declaration
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public long Id { get; set; }
Property Value
Type | Description |
---|---|
long | ID of the build configuration. |
Name
Name of the build configuration.
Declaration
[DataMember(Name = "name", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | Name of the build configuration. |
UpdatedAt
Date of last update. Only supported for version >= 4.
Declaration
[DataMember(Name = "updatedAt", EmitDefaultValue = false)]
[Preserve]
public DateTime UpdatedAt { get; set; }
Property Value
Type | Description |
---|---|
Date |
Date of last update. Only supported for version >= 4. |
_Version
Version of the build configuration
Declaration
[DataMember(Name = "version", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public long _Version { get; set; }
Property Value
Type | Description |
---|---|
long | Version of the build configuration |