
com.vendasta.accountgroup.v1.internal.AccountValidationServiceHTTPClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of accountgroup.v1 Show documentation
Show all versions of accountgroup.v1 Show documentation
Java SDK for service account-group
The newest version!
/**
Code generated by sdkgen
DO NOT EDIT!
*/
package com.vendasta.accountgroup.v1.internal;
import com.google.protobuf.*;
import com.vendasta.accountgroup.v1.generated.AccountValidationProto;
import com.vendasta.vax.RequestOptions;
import com.vendasta.vax.HTTPClient;
import com.vendasta.vax.SDKException;
import java.io.InputStream;
public class AccountValidationServiceHTTPClient extends HTTPClient implements AccountValidationServiceClientInterface {
public AccountValidationServiceHTTPClient(String host, String scope, boolean secure) {
super(host, scope, secure);
}
public AccountValidationServiceHTTPClient(String host, String scope, boolean secure, float defaultTimeout) {
super(host, scope, secure, defaultTimeout);
}
public AccountValidationServiceHTTPClient(String host, String scope, InputStream serviceAccount, boolean secure, float defaultTimeout) {
super(host, scope, serviceAccount, secure, defaultTimeout);
}
public ValidateAddressMultiResponse ValidateAddressMulti(ValidateAddressMultiRequest req, RequestOptions.Builder options) throws SDKException {
AccountValidationProto.ValidateAddressMultiResponse.Builder builder = this.doRequest(
"/accountgroup.v1.AccountValidationService/ValidateAddressMulti",
req.toProto(),
AccountValidationProto.ValidateAddressMultiResponse.newBuilder(),
options
);
return ValidateAddressMultiResponse.fromProto(builder.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy