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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.4",
"regenerated": "2023-05-05 20:33:11.473887",
"spec_repo_commit": "70465187"
"regenerated": "2023-05-09 21:23:11.960872",
"spec_repo_commit": "2ba8c6cd"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-05-05 20:33:11.486449",
"spec_repo_commit": "70465187"
"regenerated": "2023-05-09 21:23:11.978977",
"spec_repo_commit": "2ba8c6cd"
}
}
}
12 changes: 0 additions & 12 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13508,12 +13508,6 @@ components:
example: example-team
maxLength: 64
type: string
link_count:
description: The number of links belonging to the team
format: int32
maximum: 2147483647
readOnly: true
type: integer
name:
description: The name of the team
example: Example Team
Expand Down Expand Up @@ -13811,12 +13805,6 @@ components:
example: example-team
maxLength: 64
type: string
link_count:
description: The number of links belonging to the team
format: int32
maximum: 2147483647
readOnly: true
type: integer
name:
description: The name of the team
example: Example Team
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
@JsonPropertyOrder({
TeamCreateAttributes.JSON_PROPERTY_DESCRIPTION,
TeamCreateAttributes.JSON_PROPERTY_HANDLE,
TeamCreateAttributes.JSON_PROPERTY_LINK_COUNT,
TeamCreateAttributes.JSON_PROPERTY_NAME
})
@jakarta.annotation.Generated(
Expand All @@ -30,9 +29,6 @@ public class TeamCreateAttributes {
public static final String JSON_PROPERTY_HANDLE = "handle";
private String handle;

public static final String JSON_PROPERTY_LINK_COUNT = "link_count";
private Integer linkCount;

public static final String JSON_PROPERTY_NAME = "name";
private String name;

Expand Down Expand Up @@ -87,18 +83,6 @@ public void setHandle(String handle) {
this.handle = handle;
}

/**
* The number of links belonging to the team maximum: 2147483647
*
* @return linkCount
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LINK_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getLinkCount() {
return linkCount;
}

public TeamCreateAttributes name(String name) {
this.name = name;
return this;
Expand Down Expand Up @@ -131,13 +115,12 @@ public boolean equals(Object o) {
TeamCreateAttributes teamCreateAttributes = (TeamCreateAttributes) o;
return Objects.equals(this.description, teamCreateAttributes.description)
&& Objects.equals(this.handle, teamCreateAttributes.handle)
&& Objects.equals(this.linkCount, teamCreateAttributes.linkCount)
&& Objects.equals(this.name, teamCreateAttributes.name);
}

@Override
public int hashCode() {
return Objects.hash(description, handle, linkCount, name);
return Objects.hash(description, handle, name);
}

@Override
Expand All @@ -146,7 +129,6 @@ public String toString() {
sb.append("class TeamCreateAttributes {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" handle: ").append(toIndentedString(handle)).append("\n");
sb.append(" linkCount: ").append(toIndentedString(linkCount)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
TeamUpdateAttributes.JSON_PROPERTY_COLOR,
TeamUpdateAttributes.JSON_PROPERTY_DESCRIPTION,
TeamUpdateAttributes.JSON_PROPERTY_HANDLE,
TeamUpdateAttributes.JSON_PROPERTY_LINK_COUNT,
TeamUpdateAttributes.JSON_PROPERTY_NAME
})
@jakarta.annotation.Generated(
Expand All @@ -34,9 +33,6 @@ public class TeamUpdateAttributes {
public static final String JSON_PROPERTY_HANDLE = "handle";
private String handle;

public static final String JSON_PROPERTY_LINK_COUNT = "link_count";
private Integer linkCount;

public static final String JSON_PROPERTY_NAME = "name";
private String name;

Expand Down Expand Up @@ -112,18 +108,6 @@ public void setHandle(String handle) {
this.handle = handle;
}

/**
* The number of links belonging to the team maximum: 2147483647
*
* @return linkCount
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LINK_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getLinkCount() {
return linkCount;
}

public TeamUpdateAttributes name(String name) {
this.name = name;
return this;
Expand Down Expand Up @@ -157,13 +141,12 @@ public boolean equals(Object o) {
return Objects.equals(this.color, teamUpdateAttributes.color)
&& Objects.equals(this.description, teamUpdateAttributes.description)
&& Objects.equals(this.handle, teamUpdateAttributes.handle)
&& Objects.equals(this.linkCount, teamUpdateAttributes.linkCount)
&& Objects.equals(this.name, teamUpdateAttributes.name);
}

@Override
public int hashCode() {
return Objects.hash(color, description, handle, linkCount, name);
return Objects.hash(color, description, handle, name);
}

@Override
Expand All @@ -173,7 +156,6 @@ public String toString() {
sb.append(" color: ").append(toIndentedString(color)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" handle: ").append(toIndentedString(handle)).append("\n");
sb.append(" linkCount: ").append(toIndentedString(linkCount)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append("}");
return sb.toString();
Expand Down