Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19059,7 +19059,7 @@ components:
type: object
IPAllowlistEntryType:
default: ip_allowlist_entry
description: IP allowlist Entry type.
description: IP allowlist entry type.
enum:
- ip_allowlist_entry
example: ip_allowlist_entry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public IPAllowlistEntryData type(IPAllowlistEntryType type) {
}

/**
* IP allowlist Entry type.
* IP allowlist entry type.
*
* @return type
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.HashSet;
import java.util.Set;

/** IP allowlist Entry type. */
/** IP allowlist entry type. */
@JsonSerialize(using = IPAllowlistEntryType.IPAllowlistEntryTypeSerializer.class)
public class IPAllowlistEntryType extends ModelEnum<String> {

Expand Down