org.ton.java.tonlib.queries.MethodString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tonlib Show documentation
Show all versions of tonlib Show documentation
Java wrapper for Tonlib shared library. Includes runMethod's return results parser.
package org.ton.java.tonlib.queries;
import com.google.gson.annotations.SerializedName;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Builder
@Setter
@Getter
@ToString
public class MethodString extends ExtraQuery {
@SerializedName(value = "@type")
final String type = "smc.methodIdName";
String name;
}