Skip to content

Commit 5f041eb

Browse files
author
Miha Zidar
committed
Add ticketSignature fields
add ticket signature to AltStake and Reoffer ticket refs
1 parent 9f4d089 commit 5f041eb

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

src/Sportradar.Mbs.Sdk/Entities/Ref/AltStakeTicketRef.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,10 @@ public class AltStakeTicketRef : TicketRefBase
1616
/// </summary>
1717
[JsonPropertyName("ticketId")]
1818
public string? TicketId { get; set; }
19-
}
19+
20+
/// <summary>
21+
/// Gets or sets the ticket signature.
22+
/// </summary>
23+
[JsonPropertyName("ticketSignature")]
24+
public string? TicketSignature { get; set; }
25+
}

src/Sportradar.Mbs.Sdk/Entities/Ref/ReofferTicketRef.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,10 @@ public class ReofferTicketRef : TicketRefBase
1616
/// </summary>
1717
[JsonPropertyName("ticketId")]
1818
public string? TicketId { get; set; }
19-
}
19+
20+
/// <summary>
21+
/// Gets or sets the ticket signature.
22+
/// </summary>
23+
[JsonPropertyName("ticketSignature")]
24+
public string? TicketSignature { get; set; }
25+
}

0 commit comments

Comments
 (0)