Skip to content

Commit

Permalink
feat(Speech to Text): Add updated prop to AcousticModel and LanguageM…
Browse files Browse the repository at this point in the history
…odel
  • Loading branch information
lpatino10 committed Jul 23, 2019
1 parent 3674ec7 commit b6dc3ac
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public interface Status {
@SerializedName("customization_id")
private String customizationId;
private String created;
private String updated;
private String language;
private List<String> versions;
private String owner;
Expand Down Expand Up @@ -86,6 +87,19 @@ public String getCreated() {
return created;
}

/**
* Gets the updated.
*
* The date and time in Coordinated Universal Time (UTC) at which the custom acoustic model was last modified. The
* `created` and `updated` fields are equal when an acoustic model is first added but has yet to be updated. The value
* is provided in full ISO 8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
*
* @return the updated
*/
public String getUpdated() {
return updated;
}

/**
* Gets the language.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public interface Status {
@SerializedName("customization_id")
private String customizationId;
private String created;
private String updated;
private String language;
private String dialect;
private List<String> versions;
Expand Down Expand Up @@ -88,6 +89,19 @@ public String getCreated() {
return created;
}

/**
* Gets the updated.
*
* The date and time in Coordinated Universal Time (UTC) at which the custom language model was last modified. The
* `created` and `updated` fields are equal when a language model is first added but has yet to be updated. The value
* is provided in full ISO 8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
*
* @return the updated
*/
public String getUpdated() {
return updated;
}

/**
* Gets the language.
*
Expand Down

0 comments on commit b6dc3ac

Please sign in to comment.