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

com.lark.oapi.service.meeting_room.v1.model.EventInfo Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

The newest version!
// Code generated by lark suite oapi sdk gen
/*
 * MIT License
 *
 * Copyright (c) 2022 Lark Technologies Pte. Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice, shall be included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

package com.lark.oapi.service.meeting_room.v1.model;

import com.google.gson.annotations.SerializedName;

public class EventInfo {
    /**
     * 日程唯一ID
     * 

示例值:a04dbea1-86b9-4372-aa8d-64ebe801be2a */ @SerializedName("uid") private String uid; /** * 日程实例原始时间。非重复性日程和重复性日程,此处传0;重复性日程的例外,传对应的original_time *

示例值:0 */ @SerializedName("original_time") private Integer originalTime; /** * 日程主题 *

示例值:test */ @SerializedName("summary") private String summary; /** * 视频会议信息 *

示例值: */ @SerializedName("vchat") private Vchat[] vchat; // builder 开始 public EventInfo() { } public EventInfo(Builder builder) { /** * 日程唯一ID *

示例值:a04dbea1-86b9-4372-aa8d-64ebe801be2a */ this.uid = builder.uid; /** * 日程实例原始时间。非重复性日程和重复性日程,此处传0;重复性日程的例外,传对应的original_time *

示例值:0 */ this.originalTime = builder.originalTime; /** * 日程主题 *

示例值:test */ this.summary = builder.summary; /** * 视频会议信息 *

示例值: */ this.vchat = builder.vchat; } public static Builder newBuilder() { return new Builder(); } public String getUid() { return this.uid; } public void setUid(String uid) { this.uid = uid; } public Integer getOriginalTime() { return this.originalTime; } public void setOriginalTime(Integer originalTime) { this.originalTime = originalTime; } public String getSummary() { return this.summary; } public void setSummary(String summary) { this.summary = summary; } public Vchat[] getVchat() { return this.vchat; } public void setVchat(Vchat[] vchat) { this.vchat = vchat; } public static class Builder { /** * 日程唯一ID *

示例值:a04dbea1-86b9-4372-aa8d-64ebe801be2a */ private String uid; /** * 日程实例原始时间。非重复性日程和重复性日程,此处传0;重复性日程的例外,传对应的original_time *

示例值:0 */ private Integer originalTime; /** * 日程主题 *

示例值:test */ private String summary; /** * 视频会议信息 *

示例值: */ private Vchat[] vchat; /** * 日程唯一ID *

示例值:a04dbea1-86b9-4372-aa8d-64ebe801be2a * * @param uid * @return */ public Builder uid(String uid) { this.uid = uid; return this; } /** * 日程实例原始时间。非重复性日程和重复性日程,此处传0;重复性日程的例外,传对应的original_time *

示例值:0 * * @param originalTime * @return */ public Builder originalTime(Integer originalTime) { this.originalTime = originalTime; return this; } /** * 日程主题 *

示例值:test * * @param summary * @return */ public Builder summary(String summary) { this.summary = summary; return this; } /** * 视频会议信息 *

示例值: * * @param vchat * @return */ public Builder vchat(Vchat[] vchat) { this.vchat = vchat; return this; } public EventInfo build() { return new EventInfo(this); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy