Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Add generated SDK files
Browse files Browse the repository at this point in the history
Signed-off-by: Moti Asayag <masayag@redhat.com>
  • Loading branch information
masayag committed May 2, 2023
1 parent dd915d0 commit 7448963
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion workflow-service-sdk/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ components:
modifyDate: 2000-01-23T04:56:07.000+00:00
name: name
description: description
id: id
id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
createDate: 2000-01-23T04:56:07.000+00:00
status: status
username: username
Expand All @@ -375,6 +375,7 @@ components:
description:
type: string
id:
format: uuid
type: string
modifyDate:
format: date-time
Expand Down
2 changes: 1 addition & 1 deletion workflow-service-sdk/docs/ProjectResponseDTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**createDate** | **Date** | | [optional]
**description** | **String** | | [optional]
**id** | **String** | | [optional]
**id** | **UUID** | | [optional]
**modifyDate** | **Date** | | [optional]
**name** | **String** | | [optional]
**status** | **String** | | [optional]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.Date;
import java.util.UUID;

/**
* ProjectResponseDTO
Expand All @@ -46,7 +47,7 @@ public class ProjectResponseDTO {
public static final String SERIALIZED_NAME_ID = "id";

@SerializedName(SERIALIZED_NAME_ID)
private String id;
private UUID id;

public static final String SERIALIZED_NAME_MODIFY_DATE = "modifyDate";

Expand Down Expand Up @@ -113,7 +114,7 @@ public void setDescription(String description) {
this.description = description;
}

public ProjectResponseDTO id(String id) {
public ProjectResponseDTO id(UUID id) {

this.id = id;
return this;
Expand All @@ -126,11 +127,11 @@ public ProjectResponseDTO id(String id) {
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public String getId() {
public UUID getId() {
return id;
}

public void setId(String id) {
public void setId(UUID id) {
this.id = id;
}

Expand Down

0 comments on commit 7448963

Please sign in to comment.