com.google.apps.meet.v2.ParticipantOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-meet-v2 Show documentation
Show all versions of proto-google-cloud-meet-v2 Show documentation
Proto library for google-cloud-meet
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/apps/meet/v2/resource.proto
// Protobuf Java Version: 3.25.3
package com.google.apps.meet.v2;
public interface ParticipantOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.apps.meet.v2.Participant)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Signed-in user.
*
*
* .google.apps.meet.v2.SignedinUser signedin_user = 4;
*
* @return Whether the signedinUser field is set.
*/
boolean hasSignedinUser();
/**
*
*
*
* Signed-in user.
*
*
* .google.apps.meet.v2.SignedinUser signedin_user = 4;
*
* @return The signedinUser.
*/
com.google.apps.meet.v2.SignedinUser getSignedinUser();
/**
*
*
*
* Signed-in user.
*
*
* .google.apps.meet.v2.SignedinUser signedin_user = 4;
*/
com.google.apps.meet.v2.SignedinUserOrBuilder getSignedinUserOrBuilder();
/**
*
*
*
* Anonymous user.
*
*
* .google.apps.meet.v2.AnonymousUser anonymous_user = 5;
*
* @return Whether the anonymousUser field is set.
*/
boolean hasAnonymousUser();
/**
*
*
*
* Anonymous user.
*
*
* .google.apps.meet.v2.AnonymousUser anonymous_user = 5;
*
* @return The anonymousUser.
*/
com.google.apps.meet.v2.AnonymousUser getAnonymousUser();
/**
*
*
*
* Anonymous user.
*
*
* .google.apps.meet.v2.AnonymousUser anonymous_user = 5;
*/
com.google.apps.meet.v2.AnonymousUserOrBuilder getAnonymousUserOrBuilder();
/**
*
*
*
* User calling from their phone.
*
*
* .google.apps.meet.v2.PhoneUser phone_user = 6;
*
* @return Whether the phoneUser field is set.
*/
boolean hasPhoneUser();
/**
*
*
*
* User calling from their phone.
*
*
* .google.apps.meet.v2.PhoneUser phone_user = 6;
*
* @return The phoneUser.
*/
com.google.apps.meet.v2.PhoneUser getPhoneUser();
/**
*
*
*
* User calling from their phone.
*
*
* .google.apps.meet.v2.PhoneUser phone_user = 6;
*/
com.google.apps.meet.v2.PhoneUserOrBuilder getPhoneUserOrBuilder();
/**
*
*
*
* Output only. Resource name of the participant.
* Format: `conferenceRecords/{conference_record}/participants/{participant}`
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Output only. Resource name of the participant.
* Format: `conferenceRecords/{conference_record}/participants/{participant}`
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Output only. Time when the participant first joined the meeting.
*
*
*
* .google.protobuf.Timestamp earliest_start_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the earliestStartTime field is set.
*/
boolean hasEarliestStartTime();
/**
*
*
*
* Output only. Time when the participant first joined the meeting.
*
*
*
* .google.protobuf.Timestamp earliest_start_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The earliestStartTime.
*/
com.google.protobuf.Timestamp getEarliestStartTime();
/**
*
*
*
* Output only. Time when the participant first joined the meeting.
*
*
*
* .google.protobuf.Timestamp earliest_start_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getEarliestStartTimeOrBuilder();
/**
*
*
*
* Output only. Time when the participant left the meeting for the last time.
* This can be null if it's an active meeting.
*
*
*
* .google.protobuf.Timestamp latest_end_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the latestEndTime field is set.
*/
boolean hasLatestEndTime();
/**
*
*
*
* Output only. Time when the participant left the meeting for the last time.
* This can be null if it's an active meeting.
*
*
*
* .google.protobuf.Timestamp latest_end_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The latestEndTime.
*/
com.google.protobuf.Timestamp getLatestEndTime();
/**
*
*
*
* Output only. Time when the participant left the meeting for the last time.
* This can be null if it's an active meeting.
*
*
*
* .google.protobuf.Timestamp latest_end_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getLatestEndTimeOrBuilder();
com.google.apps.meet.v2.Participant.UserCase getUserCase();
}