org.apache.camel.component.twilio.internal.YesterdayApiMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-twilio Show documentation
Show all versions of camel-twilio Show documentation
Camel Component for Twilio
/*
* Camel ApiMethod Enumeration generated by camel-api-component-maven-plugin
* Generated on: Sat Oct 07 19:03:08 UTC 2017
*/
package org.apache.camel.component.twilio.internal;
import java.lang.reflect.Method;
import java.util.List;
import com.twilio.rest.api.v2010.account.usage.record.Yesterday;
import org.apache.camel.util.component.ApiMethod;
import org.apache.camel.util.component.ApiMethodArg;
import org.apache.camel.util.component.ApiMethodImpl;
import static org.apache.camel.util.component.ApiMethodArg.arg;
/**
* Camel {@link ApiMethod} Enumeration for com.twilio.rest.api.v2010.account.usage.record.Yesterday
*/
public enum YesterdayApiMethod implements ApiMethod {
READER(
com.twilio.rest.api.v2010.account.usage.record.YesterdayReader.class,
"reader"),
READER_1(
com.twilio.rest.api.v2010.account.usage.record.YesterdayReader.class,
"reader",
arg("pathAccountSid", String.class));
private final ApiMethod apiMethod;
private YesterdayApiMethod(Class> resultType, String name, ApiMethodArg... args) {
this.apiMethod = new ApiMethodImpl(Yesterday.class, resultType, name, args);
}
@Override
public String getName() { return apiMethod.getName(); }
@Override
public Class> getResultType() { return apiMethod.getResultType(); }
@Override
public List getArgNames() { return apiMethod.getArgNames(); }
@Override
public List> getArgTypes() { return apiMethod.getArgTypes(); }
@Override
public Method getMethod() { return apiMethod.getMethod(); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy