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

35 lines
768 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// The service provider enum describes the specific provider that is
/// associated with the Models.LinkedAccount of a Models.User. Linked accounts
/// for users represent the third party identities that are used for services
/// or apps in association with user.
public enum ServiceProvider : int
{
[Description("UNKNOWN")]
Unknown,
[Description("DROPBOX")]
Dropbox,
[Description("FACEBOOK")]
Facebook,
[Description("GOOGLE")]
Google,
[Description("INSTAGRAM")]
Instagram,
[Description("REMOTE_MEDIA")]
RemoteMedia,
}
}