Skip to content

Commit

Permalink
added updated_at in tf verification
Browse files Browse the repository at this point in the history
  • Loading branch information
kapilp93 committed Oct 27, 2023
1 parent 826a423 commit f2c32bd
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public class TollfreeVerification : Resource
public string CallbackMethod { get; set; }
public string Status { get; set; }
public string RejectionReason { get; set; }
public DateTime CreatedAt { get; set; }
public string CreatedAt { get; set; }
public string UpdatedAt { get; set; }

public TollfreeVerification()
{
Expand Down Expand Up @@ -156,7 +157,8 @@ public override string ToString()
"CallbackMethod: " + CallbackMethod + "\n" +
"Status: " + Status + "\n" +
"RejectionReason: " + RejectionReason + "\n" +
"CreatedAt: " + CreatedAt + "\n";
"CreatedAt: " + CreatedAt + "\n" +
"UpdatedAt: " + UpdatedAt + "\n";
}
}
}

0 comments on commit f2c32bd

Please sign in to comment.