Skip to content

Commit

Permalink
Add Undefined value for CustomerType enum
Browse files Browse the repository at this point in the history
  • Loading branch information
richardrandak committed Aug 3, 2020
1 parent 63b6e63 commit c7f504a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions FortnoxAPILibrary/Entities/Customers/CustomerType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System;
using System.Runtime.Serialization;

namespace FortnoxAPILibrary.Entities
Expand All @@ -8,5 +9,11 @@ public enum CustomerType
Private,
[EnumMember(Value = "COMPANY")]
Company,
/// <summary>
/// Only for retrieving legacy data. Do not use.
/// </summary>
[Obsolete]
[EnumMember(Value = "UNDEFINED")]
Undefined
}
}

0 comments on commit c7f504a

Please sign in to comment.