Class EntityCreateParams
-
- All Implemented Interfaces:
-
com.dinari.api.core.Params
public final class EntityCreateParams implements Params
Create a new
Entityto be managed by your organization. ThisEntityrepresents an individual customer of your organization.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classEntityCreateParams.BuilderA builder for EntityCreateParams.
public final classEntityCreateParams.BodyInput parameters for creating an
Entity.
-
Method Summary
Modifier and Type Method Description final Stringname()Name of the Entity.final Optional<String>referenceId()Case sensitive unique reference ID for the Entity.final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_referenceId()Returns the raw JSON value of referenceId. final Map<String, JsonValue>_additionalBodyProperties()final Headers_additionalHeaders()final QueryParams_additionalQueryParams()final EntityCreateParams.BuildertoBuilder()final EntityCreateParams.Body_body()Headers_headers()The full set of headers in the parameters, including both fixed and additional headers. QueryParams_queryParams()The full set of query params in the parameters, including both fixed and additional query params. Booleanequals(Object other)IntegerhashCode()StringtoString()final static EntityCreateParams.Builderbuilder()Returns a mutable builder for constructing an instance of EntityCreateParams. -
-
Method Detail
-
referenceId
final Optional<String> referenceId()
Case sensitive unique reference ID for the
Entity. We recommend setting this to the unique ID of theEntityin your system.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_referenceId
final JsonField<String> _referenceId()
Returns the raw JSON value of referenceId.
Unlike referenceId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
-
toBuilder
final EntityCreateParams.Builder toBuilder()
-
_body
final EntityCreateParams.Body _body()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
builder
final static EntityCreateParams.Builder builder()
Returns a mutable builder for constructing an instance of EntityCreateParams.
The following fields are required:
.name()
-
-
-
-