Skip to content

Commit

Permalink
Add ticketSignature fields
Browse files Browse the repository at this point in the history
add ticket signature to AltStake and Reoffer ticket refs
  • Loading branch information
Miha Zidar authored and zb-sr committed Mar 1, 2024
1 parent 4c6d57e commit 572dba9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/Sportradar.Mbs.Sdk/Entities/Ref/AltStakeTicketRef.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ public class AltStakeTicketRef : TicketRefBase
/// </summary>
[JsonPropertyName("ticketId")]
public string? TicketId { get; set; }
}

/// <summary>
/// Gets or sets the ticket signature.
/// </summary>
[JsonPropertyName("ticketSignature")]
public string? TicketSignature { get; set; }
}
8 changes: 7 additions & 1 deletion src/Sportradar.Mbs.Sdk/Entities/Ref/ReofferTicketRef.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ public class ReofferTicketRef : TicketRefBase
/// </summary>
[JsonPropertyName("ticketId")]
public string? TicketId { get; set; }
}

/// <summary>
/// Gets or sets the ticket signature.
/// </summary>
[JsonPropertyName("ticketSignature")]
public string? TicketSignature { get; set; }
}

0 comments on commit 572dba9

Please sign in to comment.