com.sinch.sdk.domains.verification.models.v1.webhooks.VerificationRequestEventResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sinch-sdk-java Show documentation
Show all versions of sinch-sdk-java Show documentation
SDK providing a Java API for the Sinch REST APIs.
/*
* Verification | Sinch
*
* OpenAPI document version: 2.0.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit the class manually.
*/
package com.sinch.sdk.domains.verification.models.v1.webhooks;
/** VerificationRequestEventResponse */
public interface VerificationRequestEventResponse {
/**
* Get action
*
* @return action
*/
VerificationEventResponseAction getAction();
/** Dedicated Builder */
interface Builder {
/**
* see getter
*
* @param action see getter
* @return Current builder
* @see #getAction
*/
Builder setAction(VerificationEventResponseAction action);
/**
* Create instance
*
* @return The instance build with current builder values
*/
VerificationRequestEventResponse build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy