com.larksuite.oapi.service.ehr.v1.model.Attachment Maven / Gradle / Ivy
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.ehr.v1.model;
import com.google.gson.annotations.SerializedName;
public class Attachment {
@SerializedName("id")
private String id;
@SerializedName("mime_type")
private String mimeType;
@SerializedName("name")
private String name;
@SerializedName("size")
private Long size;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getMimeType() {
return this.mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy