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

com.github.charlemaznable.bunny.client.domain.QueryRequest Maven / Gradle / Ivy

Go to download

Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.

There is a newer version: 2023.0.4
Show newest version
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 responseClass() {
        return QueryResponse.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy