Interface EthResponse


public interface EthResponse
Anton Kurako (GoodforGod)
Since:
07.09.2025
  • Method Summary

    Modifier and Type
    Method
    Description
    @org.jetbrains.annotations.Nullable byte[]
     
    @NotNull Map<String,List<String>>
     
    of(int statusCode, @org.jetbrains.annotations.Nullable byte[] body)
     
    of(int statusCode, @org.jetbrains.annotations.Nullable byte[] body, @Nullable Map<String,List<String>> headers)
     
    int
     
  • Method Details

    • statusCode

      int statusCode()
    • body

      @Nullable @org.jetbrains.annotations.Nullable byte[] body()
    • headers

      @NotNull @NotNull Map<String,List<String>> headers()
    • of

      static EthResponse of(int statusCode, @Nullable @org.jetbrains.annotations.Nullable byte[] body)
    • of

      static EthResponse of(int statusCode, @Nullable @org.jetbrains.annotations.Nullable byte[] body, @Nullable @Nullable Map<String,List<String>> headers)