VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.meta.xr.sdk.platform/Scripts/Models/LaunchInvitePanelFlowResult.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

31 lines
1.0 KiB
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform.Models
{
using System;
using System.Collections;
using Oculus.Platform.Models;
using System.Collections.Generic;
using UnityEngine;
/// Represents the result of a user's interaction with the invite panel, which
/// is used to send out invitations to other users. It provides a way for
/// developers to track the results of a user's interaction with the invite
/// panel, including the list of users who were invited to the session. It can
/// be retrieved using
/// Message::MessageType::Notification_GroupPresence_InvitationsSent.
public class LaunchInvitePanelFlowResult
{
/// A list of Models.User who were invited to the session by the user who
/// interacted with the invite panel.
public readonly UserList InvitedUsers;
public LaunchInvitePanelFlowResult(IntPtr o)
{
InvitedUsers = new UserList(CAPI.ovr_LaunchInvitePanelFlowResult_GetInvitedUsers(o));
}
}
}