com.casper.sdk.model.entity.AddressableEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of casper-java-sdk Show documentation
Show all versions of casper-java-sdk Show documentation
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;
}