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

com.casper.sdk.model.entity.AddressableEntity 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.entity;

import com.casper.sdk.model.contract.EntryPointValue;
import com.casper.sdk.model.contract.NamedKey;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;

import java.util.List;

/**
 * An addressable entity.
 * Methods and type signatures supported by a contract.
 *
 * @author [email protected]
 */
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class AddressableEntity implements StateEntity {

    /** The addressable entity. */
    private Entity entity;

    /** The named keys of the addressable entity. */
    @JsonProperty("named_keys")
    private List namedKeys;

    /** The entry points of the addressable entity. */
    @JsonProperty("entry_points")
    private List entryPoints;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy