
com.vendasta.salesorders.v1.internal.ArchiveSalesOrderRequest 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;
/**
* ArchiveSalesOrderRequest is use to archive an order
**/
public final class ArchiveSalesOrderRequest {
private final String orderId;
private final String businessId;
private ArchiveSalesOrderRequest (
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 ArchiveSalesOrderRequest class
* @return The instantiated final ArchiveSalesOrderRequest
**/
public ArchiveSalesOrderRequest build() {
return new ArchiveSalesOrderRequest(
this.orderId,
this.businessId);
}
}
/**
* Returns a Builder for ArchiveSalesOrderRequest, which is a mutable representation of the object. Once the
* client has built up an object they can then create an immutable ArchiveSalesOrderRequest 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 ArchiveSalesOrderRequest instance
**/
public String toString() {
String result = "ArchiveSalesOrderRequest\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
* ArchiveSalesOrderRequest, which is much more usable.
* @return An instance of ArchiveSalesOrderRequest representing the input proto object
**/
public static ArchiveSalesOrderRequest fromProto(ApiProto.ArchiveSalesOrderRequest proto) {
ArchiveSalesOrderRequest out = null;
if (proto != null) {
ArchiveSalesOrderRequest.Builder outBuilder = ArchiveSalesOrderRequest.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 ArchiveSalesOrderRequest instances representing the input proto objects
**/
public static List fromProtos(List protos) {
List out = new ArrayList();
for(ApiProto.ArchiveSalesOrderRequest proto : protos) {
out.add(ArchiveSalesOrderRequest.fromProto(proto));
}
return out;
}
/**
* Allows for simple conversion of an object to the low-level generated protobuf object.
* @return An instance of ApiProto.ArchiveSalesOrderRequest which is a proto object ready for wire transmission
**/
public ApiProto.ArchiveSalesOrderRequest toProto() {
ArchiveSalesOrderRequest obj = this;
ApiProto.ArchiveSalesOrderRequest.Builder outBuilder = ApiProto.ArchiveSalesOrderRequest.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.ArchiveSalesOrderRequest instances representing the input objects.
*/
public static List toProtos(List objects) {
List out = new ArrayList();
if(objects != null) {
for (ArchiveSalesOrderRequest obj : objects) {
out.add(obj!=null?obj.toProto():null);
}
}
return out;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy