
com.twilio.sdk.resource.factory.AccountFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Java helper library for Twilio services
package com.twilio.sdk.resource.factory;
import com.twilio.sdk.TwilioRestException;
import com.twilio.sdk.resource.instance.Account;
import org.apache.http.NameValuePair;
import java.util.List;
import java.util.Map;
// TODO: Auto-generated Javadoc
/**
* A factory for creating Account objects.
*
* For more information see https://www.twilio.com/docs/api/rest/subaccounts
*/
public interface AccountFactory {
/**
* Creates a subaccount.
*
* @param params the params
* @return the account
* @throws TwilioRestException
*/
public Account create(Map params) throws TwilioRestException;
public Account create(List params) throws TwilioRestException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy