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

com.github.charlemaznable.bunny.client.domain.CalculateRequest 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;

import java.util.Map;

/**
 * 计费接口 请求
 */
@Getter
@Setter
public class CalculateRequest extends BunnyBaseRequest {

    /**
     * 计费参数, 依据服务类型选择计费插件, 由插件解析
     */
    private Map chargingParameters;

    public CalculateRequest() {
        this.bunnyAddress = BunnyAddress.CALCULATE;
    }

    @Override
    public Class responseClass() {
        return CalculateResponse.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy