com.github.charlemaznable.bunny.client.domain.QueryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bunny-client Show documentation
Show all versions of bunny-client Show documentation
Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.
package com.github.charlemaznable.bunny.client.domain;
import lombok.Getter;
import lombok.Setter;
/**
* 余额查询接口 请求
*/
@Getter
@Setter
public class QueryRequest extends BunnyBaseRequest {
public QueryRequest() {
this.bunnyAddress = BunnyAddress.QUERY;
}
@Override
public Class extends QueryResponse> responseClass() {
return QueryResponse.class;
}
}