
com.vendasta.salesorders.v1.internal.ApproveSalesOrderRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of salesorders.v1 Show documentation
Show all versions of salesorders.v1 Show documentation
Java SDK for service sales-orders
The newest version!
package com.vendasta.salesorders.v1.internal;
import java.util.List;
import java.util.ArrayList;
import java.util.Date;
import java.util.Map;
import java.util.HashMap;
import java.util.Collections;
import java.util.Arrays;
import org.apache.commons.lang3.StringUtils;
import com.vendasta.salesorders.v1.generated.ApiProto;
/**
* Request for approving a order
**/
public final class ApproveSalesOrderRequest {
private final String orderId;
private final String businessId;
private ApproveSalesOrderRequest (
final String orderId,
final String businessId)
{
this.orderId = orderId;
this.businessId = businessId;
}
/**
* Unique identifier of an order
* @return The final value of orderId on the object
**/
public String getOrderId() {
return this.orderId;
}
/**
* The business the order belongs to
* @return The final value of businessId on the object
**/
public String getBusinessId() {
return this.businessId;
}
public static class Builder {
private String orderId;
private String businessId;
public Builder() {
this.orderId = "";
this.businessId = "";
}
/**
* Adds a value to the builder for orderId
* @param orderId Value to assign to the mutable Builder
* @return The Builder instance so that call chaining works
**/
public Builder setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* Adds a value to the builder for businessId
* @param businessId Value to assign to the mutable Builder
* @return The Builder instance so that call chaining works
**/
public Builder setBusinessId(String businessId) {
this.businessId = businessId;
return this;
}
/**
* Takes the configuration in the mutable Builder and uses it to instantiate a final instance
* of the ApproveSalesOrderRequest class
* @return The instantiated final ApproveSalesOrderRequest
**/
public ApproveSalesOrderRequest build() {
return new ApproveSalesOrderRequest(
this.orderId,
this.businessId);
}
}
/**
* Returns a Builder for ApproveSalesOrderRequest, which is a mutable representation of the object. Once the
* client has built up an object they can then create an immutable ApproveSalesOrderRequest object using the
* build function.
* @return A fresh Builder instance with no values set
**/
public static Builder newBuilder() {
return new Builder();
}
/**
* Provides a human-readable representation of this object. Useful for debugging.
* @return A string representation of the ApproveSalesOrderRequest instance
**/
public String toString() {
String result = "ApproveSalesOrderRequest\n";
result += "-> orderId: (String)"
+ StringUtils.join("\n ", Arrays.asList(String.valueOf(this.orderId).split("\n"))) + "\n";
result += "-> businessId: (String)"
+ StringUtils.join("\n ", Arrays.asList(String.valueOf(this.businessId).split("\n"))) + "\n";
return result;
}
/**
* Allows for simple conversion between the low-level generated protobuf object to
* ApproveSalesOrderRequest, which is much more usable.
* @return An instance of ApproveSalesOrderRequest representing the input proto object
**/
public static ApproveSalesOrderRequest fromProto(ApiProto.ApproveSalesOrderRequest proto) {
ApproveSalesOrderRequest out = null;
if (proto != null) {
ApproveSalesOrderRequest.Builder outBuilder = ApproveSalesOrderRequest.newBuilder()
.setOrderId(proto.getOrderId())
.setBusinessId(proto.getBusinessId());
out = outBuilder.build();
}
return out;
}
/**
* Convenience method for handling lists of proto objects. It calls .fromProto on each one
* and returns a list of the converted results.
* @return A list of ApproveSalesOrderRequest instances representing the input proto objects
**/
public static List fromProtos(List protos) {
List out = new ArrayList();
for(ApiProto.ApproveSalesOrderRequest proto : protos) {
out.add(ApproveSalesOrderRequest.fromProto(proto));
}
return out;
}
/**
* Allows for simple conversion of an object to the low-level generated protobuf object.
* @return An instance of ApiProto.ApproveSalesOrderRequest which is a proto object ready for wire transmission
**/
public ApiProto.ApproveSalesOrderRequest toProto() {
ApproveSalesOrderRequest obj = this;
ApiProto.ApproveSalesOrderRequest.Builder outBuilder = ApiProto.ApproveSalesOrderRequest.newBuilder();
outBuilder.setOrderId(obj.getOrderId());
outBuilder.setBusinessId(obj.getBusinessId());
return outBuilder.build();
}
/**
* Convenience method for handling lists of objects. It calls .toProto on each one and
* returns a list of the converted results.
* @return A list of ApiProto.ApproveSalesOrderRequest instances representing the input objects.
*/
public static List toProtos(List objects) {
List out = new ArrayList();
if(objects != null) {
for (ApproveSalesOrderRequest obj : objects) {
out.add(obj!=null?obj.toProto():null);
}
}
return out;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy