Skip to content

Commit

Permalink
refactor: use stillImageFileValueHasExternalUrl instead of fileValueH…
Browse files Browse the repository at this point in the history
…asExternalUrl
  • Loading branch information
domsteinbach committed Sep 30, 2024
1 parent ab59ad8 commit 46ea61f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/models/v2/resources/values/create/create-file-value.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class CreateStillImageFileValue extends CreateFileValue {
*/
@JsonObject("CreateStillImageExternalFileValue")
export class CreateStillImageExternalFileValue extends CreateFileValue {
@JsonProperty(Constants.FileValueHasExternalUrl, String, true)
@JsonProperty(Constants.StillImageFileValueHasExternalUrl, String, true)
externalUrl?: string = "";
constructor() {
super(Constants.StillImageExternalFileValue);
Expand Down
2 changes: 1 addition & 1 deletion src/models/v2/resources/values/update/update-file-value.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class UpdateStillImageFileValue extends UpdateFileValue {
*/
@JsonObject("UpdateStillImageExternalFileValue")
export class UpdateExternalStillImageFileValue extends UpdateFileValue {
@JsonProperty(Constants.FileValueHasExternalUrl, String, true)
@JsonProperty(Constants.StillImageFileValueHasExternalUrl, String, true)
externalUrl: string;
constructor() {
super(Constants.StillImageExternalFileValue);
Expand Down

0 comments on commit 46ea61f

Please sign in to comment.