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

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

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class ActionAdaptiveCardInfo {
    /**
     * Enum: AdaptiveCard
     */
    public String type;
    /**
     *
     */
    public ActionCardBody[] body;

    public ActionAdaptiveCardInfo type(String type) {
        this.type = type;
        return this;
    }

    public ActionAdaptiveCardInfo body(ActionCardBody[] body) {
        this.body = body;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy