Skip to content

Commit

Permalink
Add missing properties in OnboardingOrganizationRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
Viincenttt committed Mar 29, 2024
1 parent e6e44ae commit 0627171
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,21 @@ public class OnboardingOrganizationRequest {
/// Address of the organization.
/// </summary>
public AddressObject Address { get; set; }

/// <summary>
/// The Chamber of Commerce (or local equivalent) registration number of the organization.
/// </summary>
public string RegistrationNumber { get; set; }

/// <summary>
/// The VAT number of the organization, if based in the European Union or the United Kingdom.
/// </summary>
public string VatNumber { get; set; }

/// <summary>
/// The organization’s VAT regulation, if based in the European Union. Either shifted (VAT is shifted)
/// or dutch (Dutch VAT rate) is accepted.
/// </summary>
public string VatRegulation { get; set; }
}
}

0 comments on commit 0627171

Please sign in to comment.