Skip to content

Commit

Permalink
Added uri property
Browse files Browse the repository at this point in the history
  • Loading branch information
polanus committed Feb 9, 2024
1 parent 36d0b0a commit 7fb358c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/java/com/bynder/sdk/query/UsageQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ public class UsageQuery {
@ApiField(name = "asset_id")
private String assetId;

/**
* Uri of the asset
*/
@ApiField(name = "uri")
private String uri;

public String getAssetId() {
return assetId;
}
Expand All @@ -27,4 +33,13 @@ public UsageQuery setAssetId(final String assetId) {
this.assetId = assetId;
return this;
}

public String getUri() {
return uri;
}

public UsageQuery setUri(final String uri) {
this.uri = uri;
return this;
}
}

0 comments on commit 7fb358c

Please sign in to comment.