com.ringcentral.definitions.TMAttachmentInfo Maven / Gradle / Ivy
package com.ringcentral.definitions;
public class TMAttachmentInfo {
/**
* Internal identifier of an attachment
*/
public String id;
/**
* Type of an attachment
* Enum: File, Note, Event, Card
*/
public String type;
public TMAttachmentInfo id(String id) {
this.id = id;
return this;
}
public TMAttachmentInfo type(String type) {
this.type = type;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy