Skip to content

Commit

Permalink
Replaced byte by Binary
Browse files Browse the repository at this point in the history
  • Loading branch information
Vignesh Kennadi committed Sep 25, 2024
1 parent 18684e2 commit 7b709e1
Show file tree
Hide file tree
Showing 12 changed files with 1,695 additions and 293 deletions.
176 changes: 88 additions & 88 deletions Xero.NetStandard.OAuth2/Api/AccountingApi.cs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Xero.NetStandard.OAuth2/Model/PayrollNz/Employee.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ public enum GenderEnum
/// <value>The employee’s gender</value>
[DataMember(Name="gender", EmitDefaultValue=false)]
public GenderEnum Gender { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="Employee" /> class.
/// </summary>
[JsonConstructorAttribute]
public Employee()
{
}

/// <summary>
/// Xero unique identifier for the employee
Expand Down
7 changes: 7 additions & 0 deletions Xero.NetStandard.OAuth2/Model/PayrollNz/Employment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ namespace Xero.NetStandard.OAuth2.Model.PayrollNz
[DataContract]
public partial class Employment : IEquatable<Employment>, IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="Employment" /> class.
/// </summary>
[JsonConstructorAttribute]
public Employment()
{
}

/// <summary>
/// Xero unique identifier for the payroll calendar of the employee
Expand Down
7 changes: 7 additions & 0 deletions Xero.NetStandard.OAuth2/Model/PayrollUk/Employee.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ public enum GenderEnum
/// <value>The employee’s gender</value>
[DataMember(Name="gender", EmitDefaultValue=false)]
public GenderEnum Gender { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="Employee" /> class.
/// </summary>
[JsonConstructorAttribute]
public Employee()
{
}

/// <summary>
/// Xero unique identifier for the employee
Expand Down
7 changes: 7 additions & 0 deletions Xero.NetStandard.OAuth2/Model/PayrollUk/Employment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ public enum NiCategoryEnum
/// <value>The NI Category of the employee</value>
[DataMember(Name="niCategory", EmitDefaultValue=false)]
public NiCategoryEnum NiCategory { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="Employment" /> class.
/// </summary>
[JsonConstructorAttribute]
public Employment()
{
}

/// <summary>
/// Xero unique identifier for the payroll calendar of the employee
Expand Down
Loading

0 comments on commit 7b709e1

Please sign in to comment.