com.microsoft.azure.functions.annotation.TwilioSmsOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-functions-java-library Show documentation
Show all versions of azure-functions-java-library Show documentation
This package contains all Java interfaces and annotations to interact with Microsoft Azure functions runtime.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.functions.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Place this on a parameter whose value would be sent through twilio SMS.
* The parameter type should be OutputBinding<T>, where T could be one of:
*
*
* - Any native Java types such as int, String, byte[]
* - Any POJO type
*
*
*
* @since 1.0.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.METHOD})
public @interface TwilioSmsOutput {
/**
* The variable name used in function.json.
* @return The variable name used in function.json.
*/
String name();
/**
* Defines how Functions runtime should treat the parameter value. Possible values are:
*
* - "" or string: treat it as a string whose value is serialized from the parameter
* - binary: treat it as a binary data whose value comes from for example OutputBinding<byte[]>
*
* @return The dataType which will be used by the Functions runtime.
*/
String dataType() default "";
/**
* Defines the account SID of Twilio SMS to send.
* @return The Twilio SMS account SID string.
*/
String accountSid();
/**
* Defines the authorization token of Twilio SMS to send.
* @return The Twilio SMS authorization token string.
*/
String authToken();
/**
* Defines the target of Twilio SMS to send.
* @return The Twilio SMS target string.
*/
String to();
/**
* Defines the source of Twilio SMS to send.
* @return The Twilio SMS source string.
*/
String from();
/**
* Defines the content body of Twilio SMS to send.
* @return The Twilio SMS content body string.
*/
String body();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy