Documentation for the Unity C# Library
Loading...
Searching...
No Matches
ApexWebsocketTypes.cs
Go to the documentation of this file.
1using Newtonsoft.Json;
2using System;
3
4namespace PixoVR.Apex
5{
6 [Serializable]
7 public class AuthorizationCode : IPlatformErrorable
8 {
9 [JsonProperty(PropertyName = "auth_code")]
10 public string Code;
11
12 public bool HasErrored()
13 {
14 return (Code == null);
15 }
16 }
17}