com.sinch.sdk.domains.conversation.models.v1.credentials.KakaoTalkCredentials 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.
/*
* Conversation API | Sinch
*
* OpenAPI document version: 1.0
* 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.conversation.models.v1.credentials;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
/**
* If you are including the KakaoTalk channel in the channel_identifier
property, you
* must include this object.
*/
@JsonDeserialize(builder = KakaoTalkCredentialsImpl.Builder.class)
public interface KakaoTalkCredentials extends ChannelCredentials {
/**
* KakaoTalk Business Channel ID.
*
* @return kakaotalkPlusFriendId
*/
String getKakaotalkPlusFriendId();
/**
* KakaoTalk Sender Key.
*
* @return kakaotalkSenderKey
*/
String getKakaotalkSenderKey();
/**
* Getting builder
*
* @return New Builder instance
*/
static Builder builder() {
return new KakaoTalkCredentialsImpl.Builder();
}
/** Dedicated Builder */
interface Builder {
/**
* see getter
*
* @param kakaotalkPlusFriendId see getter
* @return Current builder
* @see #getKakaotalkPlusFriendId
*/
Builder setKakaotalkPlusFriendId(String kakaotalkPlusFriendId);
/**
* see getter
*
* @param kakaotalkSenderKey see getter
* @return Current builder
* @see #getKakaotalkSenderKey
*/
Builder setKakaotalkSenderKey(String kakaotalkSenderKey);
/**
* Create instance
*
* @return The instance build with current builder values
*/
KakaoTalkCredentials build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy