Skip to content

Commit

Permalink
. (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
kundu-ramit123 authored Oct 13, 2023
1 parent d22f2ee commit 4409954
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion HubSpot.NET.Examples/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ static async Task Main(string[] args)
{"make", "Ford"},
{"model", "150" + DateTime.Now.Hour + DateTime.Now.Minute},
{"name", $"2015 Ford 150"},
{"hoursmileage", $"1000" }
{"hoursmileage", $"1000" },
{"new_associated_deal" , new DateTime(2023, 10, 12, 0, 0, 0, DateTimeKind.Utc)}
},
Associations = new List<CreateCustomObjectHubSpotModel.Association>()
{
Expand Down
2 changes: 1 addition & 1 deletion HubSpot.NET/Api/CustomObject/EquipmentObjectModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public class HubspotEquipmentObjectModel : IHubSpotModel
public string? MakeOther { get; set; }

[DataMember(Name = "new_associated_deal")]
public bool? NewAssociatedDeal { get; set; }
public DateTime? NewAssociatedDeal { get; set; }

[DataMember(Name = "photo")]
public string? Photo { get; set; }
Expand Down

0 comments on commit 4409954

Please sign in to comment.