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
16 changes: 8 additions & 8 deletions hub/src/main/java/ch/iterate/hub/client/model/VaultDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.4.0-SNAPSHOT
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down Expand Up @@ -49,7 +49,7 @@
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.11.0")
public class VaultDto {
public static final String JSON_PROPERTY_ID = "id";
@javax.annotation.Nullable
@javax.annotation.Nonnull
private UUID id;

public static final String JSON_PROPERTY_NAME = "name";
Expand Down Expand Up @@ -96,10 +96,10 @@ public class VaultDto {
@javax.annotation.Nullable
private String authPrivateKey;

public VaultDto() {
public VaultDto() {
}

public VaultDto id(@javax.annotation.Nullable UUID id) {
public VaultDto id(@javax.annotation.Nonnull UUID id) {
this.id = id;
return this;
}
Expand All @@ -108,18 +108,18 @@ public VaultDto id(@javax.annotation.Nullable UUID id) {
* Get id
* @return id
*/
@javax.annotation.Nullable
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)

public UUID getId() {
return id;
}


@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setId(@javax.annotation.Nullable UUID id) {
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(@javax.annotation.Nonnull UUID id) {
this.id = id;
}

Expand Down
3 changes: 2 additions & 1 deletion hub/src/main/resources/openapi.json
Copy link
Contributor

@chenkins chenkins Feb 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Original file line number Diff line number Diff line change
Expand Up @@ -2808,6 +2808,7 @@
},
"VaultDto": {
"required": [
"id",
"name"
],
"type": "object",
Expand Down Expand Up @@ -2872,4 +2873,4 @@
}
}
}
}
}
Loading