Class BuildInfo
Information about a build
Implements
Inherited Members
Namespace: Unity.Services.Multiplay.Authoring.Core.MultiplayApi
Assembly: Unity.Services.Multiplayer.Multiplay.Authoring.Core.dll
Syntax
public record BuildInfo : IEquatable<BuildInfo>
Constructors
BuildInfo(string, BuildId, DateTime, string, CloudBucketId)
Information about a build
Declaration
public BuildInfo(string Name, BuildId BuildId, DateTime Updated, string SyncStatus, CloudBucketId CloudBucketId)
Parameters
Type | Name | Description |
---|---|---|
string | Name | Name of the build |
BuildId | BuildId | Build ID |
DateTime | Updated | Last updated time |
string | SyncStatus | Sync status |
CloudBucketId | CloudBucketId | CCD bucket ID if any |
Properties
BuildId
Build ID
Declaration
public BuildId BuildId { get; init; }
Property Value
Type | Description |
---|---|
BuildId |
CloudBucketId
CCD bucket ID if any
Declaration
public CloudBucketId CloudBucketId { get; init; }
Property Value
Type | Description |
---|---|
CloudBucketId |
Name
Name of the build
Declaration
public string Name { get; init; }
Property Value
Type | Description |
---|---|
string |
SyncStatus
Sync status
Declaration
public string SyncStatus { get; init; }
Property Value
Type | Description |
---|---|
string |
Updated
Last updated time
Declaration
public DateTime Updated { get; init; }
Property Value
Type | Description |
---|---|
DateTime |