a61328a7e7
* Pass BillingOwnerId through Acquire/Complete calls * add param to test
18 lines
508 B
C#
18 lines
508 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.Actions.RunService.WebApi
|
|
{
|
|
[DataContract]
|
|
public class AcquireJobRequest
|
|
{
|
|
[DataMember(Name = "jobMessageId", EmitDefaultValue = false)]
|
|
public string JobMessageId { get; set; }
|
|
|
|
[DataMember(Name = "runnerOS", EmitDefaultValue = false)]
|
|
public string RunnerOS { get; set; }
|
|
|
|
[DataMember(Name = "billingOwnerId", EmitDefaultValue = false)]
|
|
public string BillingOwnerId { get; set; }
|
|
}
|
|
}
|