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

28 lines
870 B
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;
/// The result of sending an invite to a user or list of users shows invites
/// were sent successfully through the resulting array. This is the model
/// returned in a successful response to the GroupPresence.SendInvites() api.
public class SendInvitesResult
{
/// The list of invites that was sent through GroupPresence.SendInvites(). This
/// invite list can comprise of friends and recently met users.
public readonly ApplicationInviteList Invites;
public SendInvitesResult(IntPtr o)
{
Invites = new ApplicationInviteList(CAPI.ovr_SendInvitesResult_GetInvites(o));
}
}
}