This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/Oculus/Platform/Scripts/Models/PartyUpdateNotification.cs
2020-07-09 11:41:01 -07:00

34 lines
1.1 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;
public class PartyUpdateNotification
{
public readonly PartyUpdateAction Action;
public readonly UInt64 PartyId;
public readonly UInt64 SenderId;
public readonly string UpdateTimestamp;
public readonly string UserAlias;
public readonly UInt64 UserId;
public readonly string UserName;
public PartyUpdateNotification(IntPtr o)
{
Action = CAPI.ovr_PartyUpdateNotification_GetAction(o);
PartyId = CAPI.ovr_PartyUpdateNotification_GetPartyId(o);
SenderId = CAPI.ovr_PartyUpdateNotification_GetSenderId(o);
UpdateTimestamp = CAPI.ovr_PartyUpdateNotification_GetUpdateTimestamp(o);
UserAlias = CAPI.ovr_PartyUpdateNotification_GetUserAlias(o);
UserId = CAPI.ovr_PartyUpdateNotification_GetUserId(o);
UserName = CAPI.ovr_PartyUpdateNotification_GetUserName(o);
}
}
}