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

com.vmware.connectors.servicenow.Request Maven / Gradle / Ivy

package com.vmware.connectors.servicenow;

import org.apache.commons.lang3.builder.ToStringBuilder;

import static org.apache.commons.lang3.builder.ToStringStyle.SHORT_PREFIX_STYLE;

class Request {

    private final String number;
    private final String totalPrice;

    Request(
            String number,
            String totalPrice
    ) {
        this.number = number;
        this.totalPrice = totalPrice;
    }

    String getNumber() {
        return number;
    }

    String getTotalPrice() {
        return totalPrice;
    }

    @Override
    public String toString() {
        return ToStringBuilder.reflectionToString(this, SHORT_PREFIX_STYLE);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy