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

com.casper.sdk.model.key.NamedKeyAddr 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.key;

import com.casper.sdk.model.entity.EntityAddr;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * A NamedKey address.
 *
 * @author [email protected]
 */
@AllArgsConstructor
@NoArgsConstructor
@Getter
@Setter
public class NamedKeyAddr {

    /** The address of the entity. */
    private EntityAddr entityAddr;
    /** The bytes of the name. */
    @JsonProperty("string_bytes")
    private String stringBytes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy