Skip to content

Clean up docs and add missing ref fields #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 2 additions & 0 deletions .docfx/toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- name: API
href: api/
5 changes: 4 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ jobs:
run: |
dotnet tool install -g docfx
docfx init -y
git checkout docfx.json

# override default config, toc, and index page
cp .docfx/* .
cp README.md index.md

docfx docfx.json
ls -alh _site
- name: push site to gh-pages
Expand Down
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; }
}