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

com.aliyun.dingtalkflashmeeting_1_0.models.CreateFlashMeetingRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkflashmeeting_1_0.models;

import com.aliyun.tea.*;

public class CreateFlashMeetingRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("creator") public String creator; /** *

This parameter is required.

*/ @NameInMap("eventId") public String eventId; @NameInMap("title") public String title; public static CreateFlashMeetingRequest build(java.util.Map map) throws Exception { CreateFlashMeetingRequest self = new CreateFlashMeetingRequest(); return TeaModel.build(map, self); } public CreateFlashMeetingRequest setCreator(String creator) { this.creator = creator; return this; } public String getCreator() { return this.creator; } public CreateFlashMeetingRequest setEventId(String eventId) { this.eventId = eventId; return this; } public String getEventId() { return this.eventId; } public CreateFlashMeetingRequest setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy