Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ automatic retry logic.
<dependency>
<groupId>com.volcengine</groupId>
<artifactId>ark-runtime</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```

### Gradle

```groovy
implementation 'com.volcengine:ark-runtime:0.1.0'
implementation 'com.volcengine:ark-runtime:0.2.0'
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.2.0
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.volcengine</groupId>
<artifactId>ark-runtime</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<packaging>jar</packaging>

<name>ark-runtime</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.21.0")
public class Usage {
public static final String JSON_PROPERTY_INPUT_IMAGES = "input_images";
@javax.annotation.Nonnull
@javax.annotation.Nullable
private Long inputImages;

public static final String JSON_PROPERTY_GENERATED_IMAGES = "generated_images";
Expand All @@ -56,28 +56,28 @@ public class Usage {
public Usage() {
}

public Usage inputImages(@javax.annotation.Nonnull Long inputImages) {
public Usage inputImages(@javax.annotation.Nullable Long inputImages) {

this.inputImages = inputImages;
return this;
}

/**
* Number of reference images supplied by the client.
* Number of reference images supplied by the client. May be absent in responses from older services.
* @return inputImages
*/
@javax.annotation.Nonnull
@JsonProperty(value = JSON_PROPERTY_INPUT_IMAGES, required = true)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@javax.annotation.Nullable
@JsonProperty(value = JSON_PROPERTY_INPUT_IMAGES, required = false)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public Long getInputImages() {
return inputImages;
}


@JsonProperty(value = JSON_PROPERTY_INPUT_IMAGES, required = true)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setInputImages(@javax.annotation.Nonnull Long inputImages) {
@JsonProperty(value = JSON_PROPERTY_INPUT_IMAGES, required = false)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setInputImages(@javax.annotation.Nullable Long inputImages) {
this.inputImages = inputImages;
}

Expand Down
Loading