Skip to content

Commit

Permalink
property types
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Tuerk <[email protected]>
  • Loading branch information
Johannes Tuerk committed Dec 12, 2023
1 parent d9d285f commit 9be9d19
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ public class TransactionCode
/// Gets or sets the length of the transaction code.
/// </summary>
[JsonProperty("length")]
public TransactionCode? Length { get; set; }
public int? Length { get; set; }

/// <summary>
/// Gets or sets a description of the transaction code.
/// </summary>
[JsonProperty("description")]
public TransactionCode? Description { get; set; }
public string? Description { get; set; }

/// <summary>
/// Gets or sets the input mode of the transaction code which specifies the valid character set. (Must be 'numeric' ot 'text')
/// </summary>
[JsonProperty("input_mode")]
public TransactionCode? InputMode { get; set; }
public string? InputMode { get; set; }
}
}

0 comments on commit 9be9d19

Please sign in to comment.