Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

breaking: Correct video composition date and callback types #482

Merged
merged 2 commits into from
Oct 7, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix date arg types
  • Loading branch information
Sam Harrison committed Oct 7, 2019
commit bd95454fd8e800d5205bcd57a03d5f5e4eb2e7a6
4 changes: 2 additions & 2 deletions src/main/java/com/twilio/rest/video/v1/Composition.java
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ private Composition(@JsonProperty("account_sid")
@JsonProperty("date_created")
final String dateCreated,
eshanholtz marked this conversation as resolved.
Show resolved Hide resolved
@JsonProperty("date_completed")
final DateTime dateCompleted,
final String dateCompleted,
@JsonProperty("date_deleted")
final DateTime dateDeleted,
final String dateDeleted,
@JsonProperty("sid")
final String sid,
@JsonProperty("room_sid")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private CompositionHook(@JsonProperty("account_sid")
@JsonProperty("date_created")
final String dateCreated,
@JsonProperty("date_updated")
final DateTime dateUpdated,
final String dateUpdated,
@JsonProperty("sid")
final String sid,
@JsonProperty("audio_sources")
Expand Down