Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
stelzo committed Dec 3, 2024
1 parent c0797ae commit 7698b57
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Dofusdude.Api.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
VisualStudioVersion = 12.0.0.0
MinimumVisualStudioVersion = 10.0.0.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dofusdude.Api", "src\Dofusdude.Api\Dofusdude.Api.csproj", "{A9C9C419-565B-4E47-9248-D69F54DF32E3}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dofusdude.Api", "src\Dofusdude.Api\Dofusdude.Api.csproj", "{B81B6B5C-940F-46EF-91C9-8AE6ED02B691}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dofusdude.Api.Test", "src\Dofusdude.Api.Test\Dofusdude.Api.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
EndProject
Expand All @@ -12,10 +12,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A9C9C419-565B-4E47-9248-D69F54DF32E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A9C9C419-565B-4E47-9248-D69F54DF32E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A9C9C419-565B-4E47-9248-D69F54DF32E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A9C9C419-565B-4E47-9248-D69F54DF32E3}.Release|Any CPU.Build.0 = Release|Any CPU
{B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Release|Any CPU.Build.0 = Release|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
2 changes: 0 additions & 2 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3536,7 +3536,6 @@ paths:
name: "range[from]"
required: false
schema:
example: 2016-09-15
format: date
type: string
style: form
Expand All @@ -3546,7 +3545,6 @@ paths:
name: "range[to]"
required: false
schema:
example: 2016-09-28
format: date
type: string
style: form
Expand Down
4 changes: 2 additions & 2 deletions docs/AlmanaxApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ namespace Example
var apiInstance = new AlmanaxApi(config);
var language = fr; // string | code
var filterBonusType = experience-points; // string? | ids from meta/{language}/almanax/bonuses (optional)
var rangeFrom = Thu Sep 15 00:00:00 UTC 2016; // DateOnly? | yyyy-mm-dd (optional)
var rangeTo = Wed Sep 28 00:00:00 UTC 2016; // DateOnly? | yyyy-mm-dd (optional)
var rangeFrom = DateOnly.Parse("2013-10-20"); // DateOnly? | yyyy-mm-dd (optional)
var rangeTo = DateOnly.Parse("2013-10-20"); // DateOnly? | yyyy-mm-dd (optional)
var rangeSize = -1; // int? | size of the returned range (optional)
var timezone = Europe/Paris; // string? | determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. (optional) (default to "Europe/Paris")
Expand Down

0 comments on commit 7698b57

Please sign in to comment.