Record Class PostmanCollectionV210.Item.Endpoint.Request.Body
java.lang.Object
java.lang.Record
io.camunda.connector.generator.postman.model.PostmanCollectionV210.Item.Endpoint.Request.Body
- Enclosing class:
PostmanCollectionV210.Item.Endpoint.Request
public static record PostmanCollectionV210.Item.Endpoint.Request.Body(PostmanCollectionV210.Item.Endpoint.Request.Body.BodyMode mode, String raw, Object graphql, com.fasterxml.jackson.databind.JsonNode urlencodedAsJsonNode, Object formdata)
extends Record
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumstatic final record -
Constructor Summary
ConstructorsConstructorDescriptionBody(PostmanCollectionV210.Item.Endpoint.Request.Body.BodyMode mode, String raw, Object graphql, com.fasterxml.jackson.databind.JsonNode urlencodedAsJsonNode, Object formdata) Creates an instance of aBodyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.formdata()Returns the value of theformdatarecord component.graphql()Returns the value of thegraphqlrecord component.final inthashCode()Returns a hash code value for this object.mode()Returns the value of themoderecord component.raw()Returns the value of therawrecord component.final StringtoString()Returns a string representation of this record class.com.fasterxml.jackson.databind.JsonNodeReturns the value of theurlencodedAsJsonNoderecord component.
-
Constructor Details
-
Body
public Body(PostmanCollectionV210.Item.Endpoint.Request.Body.BodyMode mode, String raw, Object graphql, com.fasterxml.jackson.databind.JsonNode urlencodedAsJsonNode, Object formdata) Creates an instance of aBodyrecord class.- Parameters:
mode- the value for themoderecord componentraw- the value for therawrecord componentgraphql- the value for thegraphqlrecord componenturlencodedAsJsonNode- the value for theurlencodedAsJsonNoderecord componentformdata- the value for theformdatarecord component
-
-
Method Details
-
urlencoded
-
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). -
mode
Returns the value of themoderecord component.- Returns:
- the value of the
moderecord component
-
raw
Returns the value of therawrecord component.- Returns:
- the value of the
rawrecord component
-
graphql
Returns the value of thegraphqlrecord component.- Returns:
- the value of the
graphqlrecord component
-
urlencodedAsJsonNode
public com.fasterxml.jackson.databind.JsonNode urlencodedAsJsonNode()Returns the value of theurlencodedAsJsonNoderecord component.- Returns:
- the value of the
urlencodedAsJsonNoderecord component
-
formdata
Returns the value of theformdatarecord component.- Returns:
- the value of the
formdatarecord component
-