Record Class PostmanCollectionV210.Item.Folder
java.lang.Object
java.lang.Record
io.camunda.connector.generator.postman.model.PostmanCollectionV210.Item.Folder
- All Implemented Interfaces:
PostmanCollectionV210.Item
- Enclosing interface:
PostmanCollectionV210.Item
public static record PostmanCollectionV210.Item.Folder(String name, PostmanCollectionV210.Description description, List<PostmanCollectionV210.Variable> variables, List<PostmanCollectionV210.Item> items)
extends Record
implements PostmanCollectionV210.Item
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.camunda.connector.generator.postman.model.PostmanCollectionV210.Item
PostmanCollectionV210.Item.Endpoint, PostmanCollectionV210.Item.Folder -
Constructor Summary
ConstructorsConstructorDescriptionFolder(String name, PostmanCollectionV210.Description description, List<PostmanCollectionV210.Variable> variables, List<PostmanCollectionV210.Item> items) Creates an instance of aFolderrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.items()Returns the value of theitemsrecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevariablesrecord component.
-
Constructor Details
-
Folder
public Folder(String name, PostmanCollectionV210.Description description, List<PostmanCollectionV210.Variable> variables, List<PostmanCollectionV210.Item> items) Creates an instance of aFolderrecord class.- Parameters:
name- the value for thenamerecord componentdescription- the value for thedescriptionrecord componentvariables- the value for thevariablesrecord componentitems- the value for theitemsrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Specified by:
namein interfacePostmanCollectionV210.Item- Returns:
- the value of the
namerecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
variables
Returns the value of thevariablesrecord component.- Returns:
- the value of the
variablesrecord component
-
items
Returns the value of theitemsrecord component.- Returns:
- the value of the
itemsrecord component
-