Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Sunshine Conversations API
*
* The version of the OpenAPI document: 12.8.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.zendesk.sunshine_conversations_client.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* AndroidAllOf
*/
@JsonPropertyOrder({
AndroidAllOf.JSON_PROPERTY_TYPE,
AndroidAllOf.JSON_PROPERTY_PROJECT_ID,
AndroidAllOf.JSON_PROPERTY_CLIENT_EMAIL,
AndroidAllOf.JSON_PROPERTY_PRIVATE_KEY,
AndroidAllOf.JSON_PROPERTY_SERVER_KEY,
AndroidAllOf.JSON_PROPERTY_SENDER_ID,
AndroidAllOf.JSON_PROPERTY_CAN_USER_CREATE_MORE_CONVERSATIONS,
AndroidAllOf.JSON_PROPERTY_ATTACHMENTS_ENABLED
})
public class AndroidAllOf {
public static final String JSON_PROPERTY_TYPE = "type";
private String type = "android";
public static final String JSON_PROPERTY_PROJECT_ID = "projectId";
private JsonNullable projectId = JsonNullable.undefined();
public static final String JSON_PROPERTY_CLIENT_EMAIL = "clientEmail";
private JsonNullable clientEmail = JsonNullable.undefined();
public static final String JSON_PROPERTY_PRIVATE_KEY = "privateKey";
private JsonNullable privateKey = JsonNullable.undefined();
public static final String JSON_PROPERTY_SERVER_KEY = "serverKey";
private JsonNullable serverKey = JsonNullable.undefined();
public static final String JSON_PROPERTY_SENDER_ID = "senderId";
private JsonNullable senderId = JsonNullable.undefined();
public static final String JSON_PROPERTY_CAN_USER_CREATE_MORE_CONVERSATIONS = "canUserCreateMoreConversations";
private Boolean canUserCreateMoreConversations;
public static final String JSON_PROPERTY_ATTACHMENTS_ENABLED = "attachmentsEnabled";
private Boolean attachmentsEnabled;
public AndroidAllOf type(String type) {
this.type = type;
return this;
}
/**
* <aside class=\"notice\">Firebase Cloud Messaging has deprecated its legacy APIs for HTTP and XMPP. Legacy credentials <code>serverKey</code> and <code>senderId</code> will stop working as of June 2024 and must be replaced with OAuth 2.0 access token based credentials.</aside> To configure an android integration, first visit the [Firebase Console](https://console.firebase.google.com/). Generate a private key from the Service accounts tab in the settings. Copy the `project_id`, `client_email` and `private_key` from the generated JSON file and call the create integrations endpoint with this data.
* @return type
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = " To configure an android integration, first visit the [Firebase Console](https://console.firebase.google.com/). Generate a private key from the Service accounts tab in the settings. Copy the `project_id`, `client_email` and `private_key` from the generated JSON file and call the create integrations endpoint with this data. ")
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public AndroidAllOf projectId(String projectId) {
this.projectId = JsonNullable.of(projectId);
return this;
}
/**
* Your project ID from your generated private key file.
* @return projectId
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "", value = "Your project ID from your generated private key file.")
@JsonIgnore
public String getProjectId() {
return projectId.orElse(null);
}
@JsonProperty(JSON_PROPERTY_PROJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getProjectId_JsonNullable() {
return projectId;
}
@JsonProperty(JSON_PROPERTY_PROJECT_ID)
public void setProjectId_JsonNullable(JsonNullable projectId) {
this.projectId = projectId;
}
public void setProjectId(String projectId) {
this.projectId = JsonNullable.of(projectId);
}
public AndroidAllOf clientEmail(String clientEmail) {
this.clientEmail = JsonNullable.of(clientEmail);
return this;
}
/**
* Your client email from your generated private key file.
* @return clientEmail
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "", value = "Your client email from your generated private key file.")
@JsonIgnore
public String getClientEmail() {
return clientEmail.orElse(null);
}
@JsonProperty(JSON_PROPERTY_CLIENT_EMAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getClientEmail_JsonNullable() {
return clientEmail;
}
@JsonProperty(JSON_PROPERTY_CLIENT_EMAIL)
public void setClientEmail_JsonNullable(JsonNullable clientEmail) {
this.clientEmail = clientEmail;
}
public void setClientEmail(String clientEmail) {
this.clientEmail = JsonNullable.of(clientEmail);
}
public AndroidAllOf privateKey(String privateKey) {
this.privateKey = JsonNullable.of(privateKey);
return this;
}
/**
* Your private key from your generated private key file.
* @return privateKey
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "", value = "Your private key from your generated private key file.")
@JsonIgnore
public String getPrivateKey() {
return privateKey.orElse(null);
}
@JsonProperty(JSON_PROPERTY_PRIVATE_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getPrivateKey_JsonNullable() {
return privateKey;
}
@JsonProperty(JSON_PROPERTY_PRIVATE_KEY)
public void setPrivateKey_JsonNullable(JsonNullable privateKey) {
this.privateKey = privateKey;
}
public void setPrivateKey(String privateKey) {
this.privateKey = JsonNullable.of(privateKey);
}
public AndroidAllOf serverKey(String serverKey) {
this.serverKey = JsonNullable.of(serverKey);
return this;
}
/**
* Your server key from the fcm console.
* @return serverKey
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "", value = "Your server key from the fcm console.")
@JsonIgnore
public String getServerKey() {
return serverKey.orElse(null);
}
@JsonProperty(JSON_PROPERTY_SERVER_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getServerKey_JsonNullable() {
return serverKey;
}
@JsonProperty(JSON_PROPERTY_SERVER_KEY)
public void setServerKey_JsonNullable(JsonNullable serverKey) {
this.serverKey = serverKey;
}
public void setServerKey(String serverKey) {
this.serverKey = JsonNullable.of(serverKey);
}
public AndroidAllOf senderId(String senderId) {
this.senderId = JsonNullable.of(senderId);
return this;
}
/**
* Your sender id from the fcm console.
* @return senderId
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "", value = "Your sender id from the fcm console.")
@JsonIgnore
public String getSenderId() {
return senderId.orElse(null);
}
@JsonProperty(JSON_PROPERTY_SENDER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getSenderId_JsonNullable() {
return senderId;
}
@JsonProperty(JSON_PROPERTY_SENDER_ID)
public void setSenderId_JsonNullable(JsonNullable senderId) {
this.senderId = senderId;
}
public void setSenderId(String senderId) {
this.senderId = JsonNullable.of(senderId);
}
public AndroidAllOf canUserCreateMoreConversations(Boolean canUserCreateMoreConversations) {
this.canUserCreateMoreConversations = canUserCreateMoreConversations;
return this;
}
/**
* Allows users to create more than one conversation on the android integration.
* @return canUserCreateMoreConversations
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Allows users to create more than one conversation on the android integration.")
@JsonProperty(JSON_PROPERTY_CAN_USER_CREATE_MORE_CONVERSATIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getCanUserCreateMoreConversations() {
return canUserCreateMoreConversations;
}
public void setCanUserCreateMoreConversations(Boolean canUserCreateMoreConversations) {
this.canUserCreateMoreConversations = canUserCreateMoreConversations;
}
/**
* Allows users to send attachments. By default, the setting is set to true. This setting can only be configured in Zendesk Admin Center.
* @return attachmentsEnabled
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Allows users to send attachments. By default, the setting is set to true. This setting can only be configured in Zendesk Admin Center. ")
@JsonProperty(JSON_PROPERTY_ATTACHMENTS_ENABLED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getAttachmentsEnabled() {
return attachmentsEnabled;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AndroidAllOf androidAllOf = (AndroidAllOf) o;
return Objects.equals(this.type, androidAllOf.type) &&
Objects.equals(this.projectId, androidAllOf.projectId) &&
Objects.equals(this.clientEmail, androidAllOf.clientEmail) &&
Objects.equals(this.privateKey, androidAllOf.privateKey) &&
Objects.equals(this.serverKey, androidAllOf.serverKey) &&
Objects.equals(this.senderId, androidAllOf.senderId) &&
Objects.equals(this.canUserCreateMoreConversations, androidAllOf.canUserCreateMoreConversations) &&
Objects.equals(this.attachmentsEnabled, androidAllOf.attachmentsEnabled);
}
@Override
public int hashCode() {
return Objects.hash(type, projectId, clientEmail, privateKey, serverKey, senderId, canUserCreateMoreConversations, attachmentsEnabled);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AndroidAllOf {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" projectId: ").append(toIndentedString(projectId)).append("\n");
sb.append(" clientEmail: ").append(toIndentedString(clientEmail)).append("\n");
sb.append(" privateKey: ").append(toIndentedString(privateKey)).append("\n");
sb.append(" serverKey: ").append(toIndentedString(serverKey)).append("\n");
sb.append(" senderId: ").append(toIndentedString(senderId)).append("\n");
sb.append(" canUserCreateMoreConversations: ").append(toIndentedString(canUserCreateMoreConversations)).append("\n");
sb.append(" attachmentsEnabled: ").append(toIndentedString(attachmentsEnabled)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}