com.sinch.sdk.domains.conversation.models.v1.ContactId 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;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
/** Contact ID */
@JsonDeserialize(builder = ContactIdImpl.Builder.class)
public interface ContactId extends com.sinch.sdk.domains.conversation.models.v1.Recipient {
/**
* The ID of the contact.
*
* @return contactId
*/
String getContactId();
/**
* Getting builder
*
* @return New Builder instance
*/
static Builder builder() {
return new ContactIdImpl.Builder();
}
/** Dedicated Builder */
interface Builder {
/**
* see getter
*
* @param contactId see getter
* @return Current builder
* @see #getContactId
*/
Builder setContactId(String contactId);
/**
* Create instance
*
* @return The instance build with current builder values
*/
ContactId build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy