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

com.ringcentral.definitions.TMAttachmentInfo Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
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