Class AssignBadgeOptions
Parameters for assigning a badge. Either "ReleaseId" or "ReleaseNum" should be specified, but not both.
Namespace: Unity.Services.Ccd.Management
Syntax
public class AssignBadgeOptions : object
Constructors
AssignBadgeOptions(Guid, String, Guid)
Create parameters object for assigning a badge.
Declaration
public AssignBadgeOptions(Guid bucketId, string badgeName, Guid releaseId)
Parameters
Type | Name | Description |
---|---|---|
Guid | bucketId | Id of the bucket. |
String | badgeName | Name of the badge. |
Guid | releaseId | Id of the release. |
AssignBadgeOptions(Guid, String, Int32)
Create parameters object for assigning a badge.
Declaration
public AssignBadgeOptions(Guid bucketId, string badgeName, int releaseNum)
Parameters
Type | Name | Description |
---|---|---|
Guid | bucketId | Id of the bucket. |
String | badgeName | Name of the badge. |
Int32 | releaseNum |
Properties
BadgeName
Name of the badge to update.
Declaration
public string BadgeName { get; set; }
Property Value
Type | Description |
---|---|
String |
BucketId
Id of bucket to manage permission.
Declaration
public Guid BucketId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
ReleaseId
The release id of the badge to update.
Declaration
public Guid ReleaseId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
ReleaseNum
The release number of the badge to update.
Declaration
public int? ReleaseNum { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |