All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sinch.sdk.domains.conversation.models.v1.credentials.KakaoTalkChatCredentials Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/*
 * 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 KakaoTalkChat channel in the channel_identifier property,
 * you must include this object.
 */
@JsonDeserialize(builder = KakaoTalkChatCredentialsImpl.Builder.class)
public interface KakaoTalkChatCredentials extends ChannelCredentials {

  /**
   * Kakaotalk Plus friend ID.
   *
   * @return kakaotalkPlusFriendId
   */
  String getKakaotalkPlusFriendId();

  /**
   * InfoBank API KEY.
   *
   * @return apiKey
   */
  String getApiKey();

  /**
   * Getting builder
   *
   * @return New Builder instance
   */
  static Builder builder() {
    return new KakaoTalkChatCredentialsImpl.Builder();
  }

  /** Dedicated Builder */
  interface Builder {

    /**
     * see getter
     *
     * @param kakaotalkPlusFriendId see getter
     * @return Current builder
     * @see #getKakaotalkPlusFriendId
     */
    Builder setKakaotalkPlusFriendId(String kakaotalkPlusFriendId);

    /**
     * see getter
     *
     * @param apiKey see getter
     * @return Current builder
     * @see #getApiKey
     */
    Builder setApiKey(String apiKey);

    /**
     * Create instance
     *
     * @return The instance build with current builder values
     */
    KakaoTalkChatCredentials build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy