Class Eip155SubmitParams
-
- All Implemented Interfaces:
-
com.dinari.api.core.Params
public final class Eip155SubmitParams implements Params
Submits a transaction for an EIP155 Order Request given the EIP155OrderRequest ID and Permit Signature.
An
EIP155OrderRequestrepresenting the proxied order is returned.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classEip155SubmitParams.BuilderA builder for Eip155SubmitParams.
public final classEip155SubmitParams.BodyInput parameters for creating a proxied
EIP155OrderRequestPermitTransaction.
-
Method Summary
Modifier and Type Method Description final Optional<String>accountId()final StringorderRequestId()ID of the prepared proxied order to be submitted as a proxied order. final StringpermitSignature()Signature of the permit typed data, allowing Dinari to spend the payment token or dShare asset token on behalf of the owner. final JsonField<String>_orderRequestId()Returns the raw JSON value of orderRequestId. final JsonField<String>_permitSignature()Returns the raw JSON value of permitSignature. final Map<String, JsonValue>_additionalBodyProperties()final Headers_additionalHeaders()Additional headers to send with the request. final QueryParams_additionalQueryParams()Additional query param to send with the request. final Eip155SubmitParams.BuildertoBuilder()final Eip155SubmitParams.Body_body()final String_pathParam(Integer index)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 Eip155SubmitParams.Builderbuilder()Returns a mutable builder for constructing an instance of Eip155SubmitParams. -
-
Method Detail
-
orderRequestId
final String orderRequestId()
ID of the prepared proxied order to be submitted as a proxied order.
-
permitSignature
final String permitSignature()
Signature of the permit typed data, allowing Dinari to spend the payment token or dShare asset token on behalf of the owner.
-
_orderRequestId
final JsonField<String> _orderRequestId()
Returns the raw JSON value of orderRequestId.
Unlike orderRequestId, this method doesn't throw if the JSON field has an unexpected type.
-
_permitSignature
final JsonField<String> _permitSignature()
Returns the raw JSON value of permitSignature.
Unlike permitSignature, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
Additional headers to send with the request.
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
Additional query param to send with the request.
-
toBuilder
final Eip155SubmitParams.Builder toBuilder()
-
_body
final Eip155SubmitParams.Body _body()
-
_pathParam
final String _pathParam(Integer index)
-
_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 Eip155SubmitParams.Builder builder()
Returns a mutable builder for constructing an instance of Eip155SubmitParams.
The following fields are required:
.orderRequestId() .permitSignature()
-
-
-
-