Skip to content

Commit

Permalink
additional_status and required_skills are supported for Address
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Koval authored and Dmitry Koval committed Jan 4, 2024
1 parent 3fd27f2 commit 6a6bf5f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions route4me-csharp-sdk/Route4MeSDKLibrary/DataTypes/Address.cs
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,18 @@ public class Address : GenericParameters
[DefaultValue(false)]
public string[] Tags { get; set; }

/// <summary>
/// Additional Status of the address
/// </summary>
[DataMember(Name = "additional_status", EmitDefaultValue = false)]
public string AdditionalStatus { get; set; }

/// <summary>
/// Required Skills
/// </summary>
[DataMember(Name = "required_skills", EmitDefaultValue = false)]
public string[] RequiredSkills { get; set; }

public bool ShouldSerializeLatitude()
{
return (Latitude != 0 || Longitude != 0);
Expand Down

0 comments on commit 6a6bf5f

Please sign in to comment.