Skip to content

Commit 2b239fa

Browse files
committed
Version 4.0.96
1 parent 866054d commit 2b239fa

File tree

6 files changed

+4
-134
lines changed

6 files changed

+4
-134
lines changed

Common/ApiResponse.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,5 @@ public class ValidationFailure
1717
public string PropertyName { get; set; }
1818
public string ErrorMessage { get; set; }
1919
public object AttemptedValue { get; set; }
20-
public object CustomState { get; set; }
21-
public int Severity { get; set; }
22-
public string ErrorCode { get; set; }
23-
public object FormattedMessagePlaceholderValues { get; set; }
2420
}
2521
}

FiscalApiExtensions.cs

Lines changed: 0 additions & 119 deletions
This file was deleted.

Models/ApiKey.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-

2-
using Fiscalapi.Common;
1+
using Fiscalapi.Common;
32

43
namespace Fiscalapi.Models
54
{
6-
7-
85
public class ApiKey : BaseDto
96
{
107
public string Description { get; set; }

Services/ApiKeyService.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@
44

55
namespace Fiscalapi.Services
66
{
7-
8-
97
public class ApiKeyService : BaseFiscalApiService<ApiKey>, IApiKeyService
108
{
119
public ApiKeyService(IFiscalApiHttpClient httpClient, string apiVersion)
1210
: base(httpClient, "apikeys", apiVersion)
1311
{
1412
}
15-
16-
1713
}
18-
}
14+
}

Services/InvoiceService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public async Task<ApiResponse<CancelInvoiceResponse>> CancelAsync(CancelInvoiceR
4949
if (requestModel == null)
5050
throw new ArgumentNullException(nameof(requestModel));
5151

52-
// var endpoint = BuildEndpoint("cancel");
52+
// var endpoint = BuildEndpoint("cancel");
5353

5454
// POST /api/v4/invoices/cancel
5555
return await HttpClient.DeleteAsync<CancelInvoiceResponse>(BuildEndpoint(), requestModel);

fiscalapi-net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net461;net48;netcoreapp3.1;net5.0;net6.0;net8.0</TargetFrameworks>
5-
<Version>4.0.95</Version>
5+
<Version>4.0.96</Version>
66
<AssemblyVersion>$(Version)</AssemblyVersion>
77
<FileVersion>$(Version)</FileVersion>
88
<PackageVersion>$(Version)</PackageVersion>

0 commit comments

Comments
 (0)