File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -595,7 +595,7 @@ public static CompositionHookResource FromJson(string json)
595
595
/// The ISO 8601 date and time in GMT when the resource was last updated
596
596
/// </summary>
597
597
[ JsonProperty ( "date_updated" ) ]
598
- public string DateUpdated { get ; private set ; }
598
+ public DateTime ? DateUpdated { get ; private set ; }
599
599
/// <summary>
600
600
/// The unique string that identifies the resource
601
601
/// </summary>
@@ -636,7 +636,7 @@ public static CompositionHookResource FromJson(string json)
636
636
/// The URL to send status information to your application
637
637
/// </summary>
638
638
[ JsonProperty ( "status_callback" ) ]
639
- public string StatusCallback { get ; private set ; }
639
+ public Uri StatusCallback { get ; private set ; }
640
640
/// <summary>
641
641
/// The HTTP method we should use to call status_callback
642
642
/// </summary>
Original file line number Diff line number Diff line change @@ -481,12 +481,12 @@ public static CompositionResource FromJson(string json)
481
481
/// Date when the media processing task finished
482
482
/// </summary>
483
483
[ JsonProperty ( "date_completed" ) ]
484
- public string DateCompleted { get ; private set ; }
484
+ public DateTime ? DateCompleted { get ; private set ; }
485
485
/// <summary>
486
486
/// The ISO 8601 date and time in GMT when the composition generated media was deleted
487
487
/// </summary>
488
488
[ JsonProperty ( "date_deleted" ) ]
489
- public string DateDeleted { get ; private set ; }
489
+ public DateTime ? DateDeleted { get ; private set ; }
490
490
/// <summary>
491
491
/// The unique string that identifies the resource
492
492
/// </summary>
You can’t perform that action at this time.
0 commit comments