
com.xero.models.file.Association Maven / Gradle / Ivy
/*
* Xero Files API
* These endpoints are specific to Xero Files API
*
* Contact: [email protected]
*
* 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.xero.models.file;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.xero.api.StringUtil;
import io.swagger.annotations.ApiModelProperty;
import java.util.Objects;
import java.util.UUID;
/** Association */
public class Association {
StringUtil util = new StringUtil();
@JsonProperty("SendWithObject")
private Boolean sendWithObject;
@JsonProperty("Name")
private String name;
@JsonProperty("Size")
private Integer size;
@JsonProperty("FileId")
private UUID fileId;
@JsonProperty("ObjectId")
private UUID objectId;
@JsonProperty("ObjectGroup")
private ObjectGroup objectGroup;
@JsonProperty("ObjectType")
private ObjectType objectType;
/**
* Boolean flag to determines whether the file is sent with the document it is attached to on
* client facing communications. Note- The SendWithObject element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @param sendWithObject Boolean
* @return Association
*/
public Association sendWithObject(Boolean sendWithObject) {
this.sendWithObject = sendWithObject;
return this;
}
/**
* Boolean flag to determines whether the file is sent with the document it is attached to on
* client facing communications. Note- The SendWithObject element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @return sendWithObject
*/
@ApiModelProperty(
example = "true",
value =
"Boolean flag to determines whether the file is sent with the document it is attached to"
+ " on client facing communications. Note- The SendWithObject element is only"
+ " returned when using /Associations/{ObjectId} endpoint.")
/**
* Boolean flag to determines whether the file is sent with the document it is attached to on
* client facing communications. Note- The SendWithObject element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @return sendWithObject Boolean
*/
public Boolean getSendWithObject() {
return sendWithObject;
}
/**
* Boolean flag to determines whether the file is sent with the document it is attached to on
* client facing communications. Note- The SendWithObject element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @param sendWithObject Boolean
*/
public void setSendWithObject(Boolean sendWithObject) {
this.sendWithObject = sendWithObject;
}
/**
* The name of the associated file. Note- The Name element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @param name String
* @return Association
*/
public Association name(String name) {
this.name = name;
return this;
}
/**
* The name of the associated file. Note- The Name element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @return name
*/
@ApiModelProperty(
example = "Test.pdf",
value =
"The name of the associated file. Note- The Name element is only returned when using"
+ " /Associations/{ObjectId} endpoint.")
/**
* The name of the associated file. Note- The Name element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @return name String
*/
public String getName() {
return name;
}
/**
* The name of the associated file. Note- The Name element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @param name String
*/
public void setName(String name) {
this.name = name;
}
/**
* The size of the associated file in bytes. Note- The Size element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @param size Integer
* @return Association
*/
public Association size(Integer size) {
this.size = size;
return this;
}
/**
* The size of the associated file in bytes. Note- The Size element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @return size
*/
@ApiModelProperty(
example = "12357",
value =
"The size of the associated file in bytes. Note- The Size element is only returned when"
+ " using /Associations/{ObjectId} endpoint.")
/**
* The size of the associated file in bytes. Note- The Size element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @return size Integer
*/
public Integer getSize() {
return size;
}
/**
* The size of the associated file in bytes. Note- The Size element is only returned when using
* /Associations/{ObjectId} endpoint.
*
* @param size Integer
*/
public void setSize(Integer size) {
this.size = size;
}
/**
* The unique identifier of the file
*
* @param fileId UUID
* @return Association
*/
public Association fileId(UUID fileId) {
this.fileId = fileId;
return this;
}
/**
* The unique identifier of the file
*
* @return fileId
*/
@ApiModelProperty(value = "The unique identifier of the file")
/**
* The unique identifier of the file
*
* @return fileId UUID
*/
public UUID getFileId() {
return fileId;
}
/**
* The unique identifier of the file
*
* @param fileId UUID
*/
public void setFileId(UUID fileId) {
this.fileId = fileId;
}
/**
* The identifier of the object that the file is being associated with (e.g. InvoiceID,
* BankTransactionID, ContactID)
*
* @param objectId UUID
* @return Association
*/
public Association objectId(UUID objectId) {
this.objectId = objectId;
return this;
}
/**
* The identifier of the object that the file is being associated with (e.g. InvoiceID,
* BankTransactionID, ContactID)
*
* @return objectId
*/
@ApiModelProperty(
value =
"The identifier of the object that the file is being associated with (e.g. InvoiceID,"
+ " BankTransactionID, ContactID)")
/**
* The identifier of the object that the file is being associated with (e.g. InvoiceID,
* BankTransactionID, ContactID)
*
* @return objectId UUID
*/
public UUID getObjectId() {
return objectId;
}
/**
* The identifier of the object that the file is being associated with (e.g. InvoiceID,
* BankTransactionID, ContactID)
*
* @param objectId UUID
*/
public void setObjectId(UUID objectId) {
this.objectId = objectId;
}
/**
* objectGroup
*
* @param objectGroup ObjectGroup
* @return Association
*/
public Association objectGroup(ObjectGroup objectGroup) {
this.objectGroup = objectGroup;
return this;
}
/**
* Get objectGroup
*
* @return objectGroup
*/
@ApiModelProperty(value = "")
/**
* objectGroup
*
* @return objectGroup ObjectGroup
*/
public ObjectGroup getObjectGroup() {
return objectGroup;
}
/**
* objectGroup
*
* @param objectGroup ObjectGroup
*/
public void setObjectGroup(ObjectGroup objectGroup) {
this.objectGroup = objectGroup;
}
/**
* objectType
*
* @param objectType ObjectType
* @return Association
*/
public Association objectType(ObjectType objectType) {
this.objectType = objectType;
return this;
}
/**
* Get objectType
*
* @return objectType
*/
@ApiModelProperty(value = "")
/**
* objectType
*
* @return objectType ObjectType
*/
public ObjectType getObjectType() {
return objectType;
}
/**
* objectType
*
* @param objectType ObjectType
*/
public void setObjectType(ObjectType objectType) {
this.objectType = objectType;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Association association = (Association) o;
return Objects.equals(this.sendWithObject, association.sendWithObject)
&& Objects.equals(this.name, association.name)
&& Objects.equals(this.size, association.size)
&& Objects.equals(this.fileId, association.fileId)
&& Objects.equals(this.objectId, association.objectId)
&& Objects.equals(this.objectGroup, association.objectGroup)
&& Objects.equals(this.objectType, association.objectType);
}
@Override
public int hashCode() {
return Objects.hash(sendWithObject, name, size, fileId, objectId, objectGroup, objectType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Association {\n");
sb.append(" sendWithObject: ").append(toIndentedString(sendWithObject)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" size: ").append(toIndentedString(size)).append("\n");
sb.append(" fileId: ").append(toIndentedString(fileId)).append("\n");
sb.append(" objectId: ").append(toIndentedString(objectId)).append("\n");
sb.append(" objectGroup: ").append(toIndentedString(objectGroup)).append("\n");
sb.append(" objectType: ").append(toIndentedString(objectType)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy