All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.casper.sdk.model.event.step.Step Maven / Gradle / Ivy

Go to download

SDK to streamline the 3rd party Java client integration processes. Such 3rd parties include exchanges & app developers.

The newest version!
package com.casper.sdk.model.event.step;

import com.casper.sdk.model.event.EventData;
import com.casper.sdk.model.transaction.execution.Effect;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import lombok.*;

import java.util.List;

/**
 * The execution effects produced by a `StepRequest`
 *
 * @author [email protected]
 */
@Getter
@Setter
@Builder
@AllArgsConstructor
@NoArgsConstructor
@JsonTypeName("Step")
public class Step implements EventData {

    @JsonProperty("era_id")
    private long eraId;

    /** The journal of execution transforms from a single deploy. */
    @JsonProperty("execution_effects")
    private List executionEffects;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy