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

com.symphony.api.model.V4AttachmentInfo Maven / Gradle / Ivy

There is a newer version: 8.0.5
Show newest version
package com.symphony.api.model;

import com.symphony.api.model.V4ThumbnailInfo;
import java.util.ArrayList;
import java.util.List;

import io.swagger.v3.oas.annotations.media.Schema;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.annotation.JsonCreator;

public class V4AttachmentInfo   {
  
  @Schema(required = true, description = "The attachment ID.")
 /**
   * The attachment ID.  
  **/
  private String id = null;
  
  @Schema(required = true, description = "The file name.")
 /**
   * The file name.  
  **/
  private String name = null;
  
  @Schema(required = true, description = "Size in bytes.")
 /**
   * Size in bytes.  
  **/
  private Long size = null;
  
  @Schema(description = "")
  private List images = null;
 /**
   * The attachment ID.
   * @return id
  **/
  @JsonProperty("id")
  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public V4AttachmentInfo id(String id) {
    this.id = id;
    return this;
  }

 /**
   * The file name.
   * @return name
  **/
  @JsonProperty("name")
  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public V4AttachmentInfo name(String name) {
    this.name = name;
    return this;
  }

 /**
   * Size in bytes.
   * @return size
  **/
  @JsonProperty("size")
  public Long getSize() {
    return size;
  }

  public void setSize(Long size) {
    this.size = size;
  }

  public V4AttachmentInfo size(Long size) {
    this.size = size;
    return this;
  }

 /**
   * Get images
   * @return images
  **/
  @JsonProperty("images")
  public List getImages() {
    return images;
  }

  public void setImages(List images) {
    this.images = images;
  }

  public V4AttachmentInfo images(List images) {
    this.images = images;
    return this;
  }

  public V4AttachmentInfo addImagesItem(V4ThumbnailInfo imagesItem) {
    this.images.add(imagesItem);
    return this;
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class V4AttachmentInfo {\n");
    
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("    size: ").append(toIndentedString(size)).append("\n");
    sb.append("    images: ").append(toIndentedString(images)).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 static String toIndentedString(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy