Skip to content
Closed
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
8 changes: 4 additions & 4 deletions src/PscbApi/Models/RecurrentPaymentError.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
using Newtonsoft.Json;
using JsonProperty = Newtonsoft.Json.JsonProperty;

Check failure on line 1 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

The type or namespace name 'JsonProperty' does not exist in the namespace 'Newtonsoft.Json' (are you missing an assembly reference?)

Check failure on line 1 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

The type or namespace name 'JsonProperty' does not exist in the namespace 'Newtonsoft.Json' (are you missing an assembly reference?)

namespace PscbApi.Models;

public class RecurrentPaymentError
{
[JsonProperty("code")]

Check failure on line 7 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

'JsonProperty' is not an attribute class

Check failure on line 7 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

'JsonProperty' is not an attribute class
public string Code { get; set; }
public string? Code { get; set; }

[JsonProperty("subCode")]

Check failure on line 10 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

'JsonProperty' is not an attribute class

Check failure on line 10 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

'JsonProperty' is not an attribute class
public string SubCode { get; set; }
public string? SubCode { get; set; }

[JsonProperty("description")]

Check failure on line 13 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

'JsonProperty' is not an attribute class

Check failure on line 13 in src/PscbApi/Models/RecurrentPaymentError.cs

View workflow job for this annotation

GitHub Actions / Build and publish

'JsonProperty' is not an attribute class
public string Description { get; set; }
public string? Description { get; set; }
}
Loading