connected-spaces-platform.unity.core 4.10.0-prerelease3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Editor/NativePluginBuildProcessor.asmdef +16 -0
- package/Editor/NativePluginBuildProcessor.asmdef.meta +7 -0
- package/Editor/NativePluginBuildProcessor.cs +41 -0
- package/Editor/NativePluginBuildProcessor.cs.meta +11 -0
- package/Editor.meta +7 -0
- package/Source/CSPFoundation.cs +417 -0
- package/Source/CSPFoundation.cs.meta +11 -0
- package/Source/ClientUserAgent.cs +292 -0
- package/Source/ClientUserAgent.cs.meta +11 -0
- package/Source/Common/Array.cs +201 -0
- package/Source/Common/Array.cs.meta +11 -0
- package/Source/Common/CancellationToken.cs +175 -0
- package/Source/Common/CancellationToken.cs.meta +11 -0
- package/Source/Common/FileExtensions.cs +15317 -0
- package/Source/Common/FileExtensions.cs.meta +11 -0
- package/Source/Common/List.cs +275 -0
- package/Source/Common/List.cs.meta +11 -0
- package/Source/Common/Map.cs +283 -0
- package/Source/Common/Map.cs.meta +11 -0
- package/Source/Common/MimeTypeHelper.cs +210 -0
- package/Source/Common/MimeTypeHelper.cs.meta +11 -0
- package/Source/Common/MimeTypes.cs +10565 -0
- package/Source/Common/MimeTypes.cs.meta +11 -0
- package/Source/Common/Variant.cs +573 -0
- package/Source/Common/Variant.cs.meta +11 -0
- package/Source/Common/VariantType.cs +28 -0
- package/Source/Common/VariantType.cs.meta +11 -0
- package/Source/Common/Vector3.cs +268 -0
- package/Source/Common/Vector3.cs.meta +11 -0
- package/Source/Common/Vector4.cs +328 -0
- package/Source/Common/Vector4.cs.meta +11 -0
- package/Source/Common.meta +7 -0
- package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef +14 -0
- package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef.meta +7 -0
- package/Source/Csp.cs +83 -0
- package/Source/Csp.cs.meta +11 -0
- package/Source/EThirdPartyPlatform.cs +26 -0
- package/Source/EThirdPartyPlatform.cs.meta +11 -0
- package/Source/EndpointURIs.cs +258 -0
- package/Source/EndpointURIs.cs.meta +11 -0
- package/Source/Il2cppPreserver.cs +29 -0
- package/Source/Il2cppPreserver.cs.meta +11 -0
- package/Source/Multiplayer/AssetDetailBlobParams.cs +270 -0
- package/Source/Multiplayer/AssetDetailBlobParams.cs.meta +11 -0
- package/Source/Multiplayer/ComponentBase.cs +339 -0
- package/Source/Multiplayer/ComponentBase.cs.meta +11 -0
- package/Source/Multiplayer/ComponentType.cs +46 -0
- package/Source/Multiplayer/ComponentType.cs.meta +11 -0
- package/Source/Multiplayer/ComponentUpdateInfo.cs +161 -0
- package/Source/Multiplayer/ComponentUpdateInfo.cs.meta +11 -0
- package/Source/Multiplayer/ComponentUpdateType.cs +24 -0
- package/Source/Multiplayer/ComponentUpdateType.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelActions.cs +25 -0
- package/Source/Multiplayer/Components/AnimatedModelActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs +36 -0
- package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs +793 -0
- package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioPlaybackState.cs +25 -0
- package/Source/Multiplayer/Components/AudioPlaybackState.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioPropertyKeys.cs +33 -0
- package/Source/Multiplayer/Components/AudioPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioSpaceComponent.cs +693 -0
- package/Source/Multiplayer/Components/AudioSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioType.cs +24 -0
- package/Source/Multiplayer/Components/AudioType.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs +37 -0
- package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarPlayMode.cs +26 -0
- package/Source/Multiplayer/Components/AvatarPlayMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarSpaceComponent.cs +946 -0
- package/Source/Multiplayer/Components/AvatarSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarState.cs +29 -0
- package/Source/Multiplayer/Components/AvatarState.cs.meta +11 -0
- package/Source/Multiplayer/Components/BillboardMode.cs +24 -0
- package/Source/Multiplayer/Components/BillboardMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/ButtonPropertyKeys.cs +32 -0
- package/Source/Multiplayer/Components/ButtonPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ButtonSpaceComponent.cs +597 -0
- package/Source/Multiplayer/Components/ButtonSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionMode.cs +23 -0
- package/Source/Multiplayer/Components/CollisionMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/CollisionPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionShape.cs +25 -0
- package/Source/Multiplayer/Components/CollisionShape.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionSpaceComponent.cs +757 -0
- package/Source/Multiplayer/Components/CollisionSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ConversationPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/ConversationPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ConversationSpaceComponent.cs +1105 -0
- package/Source/Multiplayer/Components/ConversationSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs +24 -0
- package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/CustomSpaceComponent.cs +370 -0
- package/Source/Multiplayer/Components/CustomSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/DisplayMode.cs +24 -0
- package/Source/Multiplayer/Components/DisplayMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/ECommercePropertyKeys.cs +24 -0
- package/Source/Multiplayer/Components/ECommercePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs +216 -0
- package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkActions.cs +23 -0
- package/Source/Multiplayer/Components/ExternalLinkActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs +31 -0
- package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs +579 -0
- package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs +569 -0
- package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogMode.cs +24 -0
- package/Source/Multiplayer/Components/FogMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogPropertyKeys.cs +36 -0
- package/Source/Multiplayer/Components/FogPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogSpaceComponent.cs +836 -0
- package/Source/Multiplayer/Components/FogSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ImagePropertyKeys.cs +33 -0
- package/Source/Multiplayer/Components/ImagePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ImageSpaceComponent.cs +693 -0
- package/Source/Multiplayer/Components/ImageSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs +28 -0
- package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs +27 -0
- package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs +27 -0
- package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs +28 -0
- package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces.meta +7 -0
- package/Source/Multiplayer/Components/LightCookieType.cs +24 -0
- package/Source/Multiplayer/Components/LightCookieType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightPropertyKeys.cs +38 -0
- package/Source/Multiplayer/Components/LightPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightShadowType.cs +25 -0
- package/Source/Multiplayer/Components/LightShadowType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightSpaceComponent.cs +891 -0
- package/Source/Multiplayer/Components/LightSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightType.cs +25 -0
- package/Source/Multiplayer/Components/LightType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LocomotionModel.cs +24 -0
- package/Source/Multiplayer/Components/LocomotionModel.cs.meta +11 -0
- package/Source/Multiplayer/Components/PortalPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/PortalPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/PortalSpaceComponent.cs +371 -0
- package/Source/Multiplayer/Components/PortalSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionShape.cs +23 -0
- package/Source/Multiplayer/Components/ReflectionShape.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs +515 -0
- package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs +25 -0
- package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptScope.cs +24 -0
- package/Source/Multiplayer/Components/ScriptScope.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptSpaceComponent.cs +258 -0
- package/Source/Multiplayer/Components/ScriptSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/SplinePropertyKeys.cs +23 -0
- package/Source/Multiplayer/Components/SplinePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/SplineSpaceComponent.cs +184 -0
- package/Source/Multiplayer/Components/SplineSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs +32 -0
- package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs +640 -0
- package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerActions.cs +24 -0
- package/Source/Multiplayer/Components/VideoPlayerActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs +25 -0
- package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs +42 -0
- package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerSourceType.cs +25 -0
- package/Source/Multiplayer/Components/VideoPlayerSourceType.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs +1187 -0
- package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components.meta +7 -0
- package/Source/Multiplayer/ConnectionState.cs +25 -0
- package/Source/Multiplayer/ConnectionState.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/BaseMessageInfo.cs +293 -0
- package/Source/Multiplayer/Conversation/BaseMessageInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationInfo.cs +205 -0
- package/Source/Multiplayer/Conversation/ConversationInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationMessageType.cs +26 -0
- package/Source/Multiplayer/Conversation/ConversationMessageType.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationResult.cs +152 -0
- package/Source/Multiplayer/Conversation/ConversationResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationSystem.cs +784 -0
- package/Source/Multiplayer/Conversation/ConversationSystem.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageCollectionResult.cs +175 -0
- package/Source/Multiplayer/Conversation/MessageCollectionResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageInfo.cs +172 -0
- package/Source/Multiplayer/Conversation/MessageInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageResult.cs +150 -0
- package/Source/Multiplayer/Conversation/MessageResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation.meta +7 -0
- package/Source/Multiplayer/ConversationSystemParams.cs +165 -0
- package/Source/Multiplayer/ConversationSystemParams.cs.meta +11 -0
- package/Source/Multiplayer/EAssetChangeType.cs +27 -0
- package/Source/Multiplayer/EAssetChangeType.cs.meta +11 -0
- package/Source/Multiplayer/IEntityDeserialiser.cs +70 -0
- package/Source/Multiplayer/IEntityDeserialiser.cs.meta +11 -0
- package/Source/Multiplayer/IEntitySerialiser.cs +63 -0
- package/Source/Multiplayer/IEntitySerialiser.cs.meta +11 -0
- package/Source/Multiplayer/MultiplayerConnection.cs +964 -0
- package/Source/Multiplayer/MultiplayerConnection.cs.meta +11 -0
- package/Source/Multiplayer/PropertyUpdateInfo.cs +159 -0
- package/Source/Multiplayer/PropertyUpdateInfo.cs.meta +11 -0
- package/Source/Multiplayer/ReplicatedValue.cs +593 -0
- package/Source/Multiplayer/ReplicatedValue.cs.meta +11 -0
- package/Source/Multiplayer/ReplicatedValueType.cs +28 -0
- package/Source/Multiplayer/ReplicatedValueType.cs.meta +11 -0
- package/Source/Multiplayer/Script/EntityScript.cs +479 -0
- package/Source/Multiplayer/Script/EntityScript.cs.meta +11 -0
- package/Source/Multiplayer/Script.meta +7 -0
- package/Source/Multiplayer/SpaceEntity.cs +1202 -0
- package/Source/Multiplayer/SpaceEntity.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntitySystem.cs +1304 -0
- package/Source/Multiplayer/SpaceEntitySystem.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntityType.cs +25 -0
- package/Source/Multiplayer/SpaceEntityType.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntityUpdateFlags.cs +27 -0
- package/Source/Multiplayer/SpaceEntityUpdateFlags.cs.meta +11 -0
- package/Source/Multiplayer/SpaceTransform.cs +232 -0
- package/Source/Multiplayer/SpaceTransform.cs.meta +11 -0
- package/Source/Multiplayer.meta +7 -0
- package/Source/NativeClassWrapper.cs +42 -0
- package/Source/NativeClassWrapper.cs.meta +11 -0
- package/Source/ProgressEventArgs.cs +15 -0
- package/Source/ProgressEventArgs.cs.meta +11 -0
- package/Source/Ref.cs +28 -0
- package/Source/Ref.cs.meta +11 -0
- package/Source/Services/EResultCode.cs +26 -0
- package/Source/Services/EResultCode.cs.meta +11 -0
- package/Source/Services/ResultBase.cs +237 -0
- package/Source/Services/ResultBase.cs.meta +11 -0
- package/Source/Services/WebService.cs +91 -0
- package/Source/Services/WebService.cs.meta +11 -0
- package/Source/Services.meta +7 -0
- package/Source/Systems/Analytics/AnalyticsEvent.cs +288 -0
- package/Source/Systems/Analytics/AnalyticsEvent.cs.meta +11 -0
- package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs +78 -0
- package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs.meta +11 -0
- package/Source/Systems/Analytics/AnalyticsSystem.cs +116 -0
- package/Source/Systems/Analytics/AnalyticsSystem.cs.meta +11 -0
- package/Source/Systems/Analytics/IAnalyticsProvider.cs +85 -0
- package/Source/Systems/Analytics/IAnalyticsProvider.cs.meta +11 -0
- package/Source/Systems/Analytics.meta +7 -0
- package/Source/Systems/Assets/Asset.cs +698 -0
- package/Source/Systems/Assets/Asset.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollection.cs +605 -0
- package/Source/Systems/Assets/AssetCollection.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollectionResult.cs +119 -0
- package/Source/Systems/Assets/AssetCollectionResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollectionsResult.cs +161 -0
- package/Source/Systems/Assets/AssetCollectionsResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetDataResult.cs +175 -0
- package/Source/Systems/Assets/AssetDataResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetDataSource.cs +24 -0
- package/Source/Systems/Assets/AssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/AssetResult.cs +131 -0
- package/Source/Systems/Assets/AssetResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetSystem.cs +1601 -0
- package/Source/Systems/Assets/AssetSystem.cs.meta +11 -0
- package/Source/Systems/Assets/AssetsResult.cs +148 -0
- package/Source/Systems/Assets/AssetsResult.cs.meta +11 -0
- package/Source/Systems/Assets/BufferAssetDataSource.cs +214 -0
- package/Source/Systems/Assets/BufferAssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetCollectionType.cs +24 -0
- package/Source/Systems/Assets/EAssetCollectionType.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetPlatform.cs +20 -0
- package/Source/Systems/Assets/EAssetPlatform.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetType.cs +30 -0
- package/Source/Systems/Assets/EAssetType.cs.meta +11 -0
- package/Source/Systems/Assets/FileAssetDataSource.cs +177 -0
- package/Source/Systems/Assets/FileAssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/LODAsset.cs +157 -0
- package/Source/Systems/Assets/LODAsset.cs.meta +11 -0
- package/Source/Systems/Assets/LODChain.cs +158 -0
- package/Source/Systems/Assets/LODChain.cs.meta +11 -0
- package/Source/Systems/Assets/LODChainResult.cs +131 -0
- package/Source/Systems/Assets/LODChainResult.cs.meta +11 -0
- package/Source/Systems/Assets/UriResult.cs +193 -0
- package/Source/Systems/Assets/UriResult.cs.meta +11 -0
- package/Source/Systems/Assets.meta +7 -0
- package/Source/Systems/BooleanResult.cs +146 -0
- package/Source/Systems/BooleanResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/AddShopifyStoreResult.cs +112 -0
- package/Source/Systems/ECommerce/AddShopifyStoreResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartInfo.cs +233 -0
- package/Source/Systems/ECommerce/CartInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartInfoResult.cs +132 -0
- package/Source/Systems/ECommerce/CartInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartLine.cs +197 -0
- package/Source/Systems/ECommerce/CartLine.cs.meta +11 -0
- package/Source/Systems/ECommerce/CheckoutInfo.cs +161 -0
- package/Source/Systems/ECommerce/CheckoutInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/CheckoutInfoResult.cs +117 -0
- package/Source/Systems/ECommerce/CheckoutInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CurrencyInfo.cs +161 -0
- package/Source/Systems/ECommerce/CurrencyInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ECommerceSystem.cs +564 -0
- package/Source/Systems/ECommerce/ECommerceSystem.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductInfo.cs +341 -0
- package/Source/Systems/ECommerce/ProductInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductInfoResult.cs +117 -0
- package/Source/Systems/ECommerce/ProductInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductMediaInfo.cs +269 -0
- package/Source/Systems/ECommerce/ProductMediaInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductVariantInfo.cs +342 -0
- package/Source/Systems/ECommerce/ProductVariantInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ShopifyStoreInfo.cs +269 -0
- package/Source/Systems/ECommerce/ShopifyStoreInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs +120 -0
- package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/VariantOptionInfo.cs +161 -0
- package/Source/Systems/ECommerce/VariantOptionInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce.meta +7 -0
- package/Source/Systems/EventTicketing/EventTicket.cs +378 -0
- package/Source/Systems/EventTicketing/EventTicket.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketResult.cs +115 -0
- package/Source/Systems/EventTicketing/EventTicketResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketingSystem.cs +563 -0
- package/Source/Systems/EventTicketing/EventTicketingSystem.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketingVendor.cs +24 -0
- package/Source/Systems/EventTicketing/EventTicketingVendor.cs.meta +11 -0
- package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs +115 -0
- package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketStatus.cs +26 -0
- package/Source/Systems/EventTicketing/TicketStatus.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEvent.cs +305 -0
- package/Source/Systems/EventTicketing/TicketedEvent.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs +117 -0
- package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventResult.cs +117 -0
- package/Source/Systems/EventTicketing/TicketedEventResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs +248 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs +115 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing.meta +7 -0
- package/Source/Systems/GraphQL/GraphQLResult.cs +146 -0
- package/Source/Systems/GraphQL/GraphQLResult.cs.meta +11 -0
- package/Source/Systems/GraphQL/GraphQLSystem.cs +221 -0
- package/Source/Systems/GraphQL/GraphQLSystem.cs.meta +11 -0
- package/Source/Systems/GraphQL.meta +7 -0
- package/Source/Systems/HTTPHeadersResult.cs +147 -0
- package/Source/Systems/HTTPHeadersResult.cs.meta +11 -0
- package/Source/Systems/Log/LogLevel.cs +28 -0
- package/Source/Systems/Log/LogLevel.cs.meta +11 -0
- package/Source/Systems/Log/LogSystem.cs +331 -0
- package/Source/Systems/Log/LogSystem.cs.meta +11 -0
- package/Source/Systems/Log.meta +7 -0
- package/Source/Systems/Maintenance/MaintenanceInfo.cs +211 -0
- package/Source/Systems/Maintenance/MaintenanceInfo.cs.meta +11 -0
- package/Source/Systems/Maintenance/MaintenanceInfoResult.cs +252 -0
- package/Source/Systems/Maintenance/MaintenanceInfoResult.cs.meta +11 -0
- package/Source/Systems/Maintenance/MaintenanceSystem.cs +154 -0
- package/Source/Systems/Maintenance/MaintenanceSystem.cs.meta +11 -0
- package/Source/Systems/Maintenance.meta +7 -0
- package/Source/Systems/NullResult.cs +122 -0
- package/Source/Systems/NullResult.cs.meta +11 -0
- package/Source/Systems/Script/ScriptSystem.cs +198 -0
- package/Source/Systems/Script/ScriptSystem.cs.meta +11 -0
- package/Source/Systems/Script.meta +7 -0
- package/Source/Systems/Settings/SettingsCollection.cs +191 -0
- package/Source/Systems/Settings/SettingsCollection.cs.meta +11 -0
- package/Source/Systems/Settings/SettingsCollectionResult.cs +119 -0
- package/Source/Systems/Settings/SettingsCollectionResult.cs.meta +11 -0
- package/Source/Systems/Settings/SettingsSystem.cs +999 -0
- package/Source/Systems/Settings/SettingsSystem.cs.meta +11 -0
- package/Source/Systems/Settings.meta +7 -0
- package/Source/Systems/Spaces/BasicSpace.cs +225 -0
- package/Source/Systems/Spaces/BasicSpace.cs.meta +11 -0
- package/Source/Systems/Spaces/BasicSpaceResult.cs +111 -0
- package/Source/Systems/Spaces/BasicSpaceResult.cs.meta +11 -0
- package/Source/Systems/Spaces/BasicSpacesResult.cs +144 -0
- package/Source/Systems/Spaces/BasicSpacesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/InviteUserRoleInfo.cs +178 -0
- package/Source/Systems/Spaces/InviteUserRoleInfo.cs.meta +11 -0
- package/Source/Systems/Spaces/PendingInvitesResult.cs +117 -0
- package/Source/Systems/Spaces/PendingInvitesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/Site.cs +259 -0
- package/Source/Systems/Spaces/Site.cs.meta +11 -0
- package/Source/Systems/Spaces/SiteResult.cs +114 -0
- package/Source/Systems/Spaces/SiteResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SitesCollectionResult.cs +117 -0
- package/Source/Systems/Spaces/SitesCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spaces/Space.cs +321 -0
- package/Source/Systems/Spaces/Space.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceAttributes.cs +27 -0
- package/Source/Systems/Spaces/SpaceAttributes.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceGeoLocation.cs +225 -0
- package/Source/Systems/Spaces/SpaceGeoLocation.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceGeoLocationResult.cs +162 -0
- package/Source/Systems/Spaces/SpaceGeoLocationResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceMetadataResult.cs +144 -0
- package/Source/Systems/Spaces/SpaceMetadataResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceResult.cs +160 -0
- package/Source/Systems/Spaces/SpaceResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceSystem.cs +2322 -0
- package/Source/Systems/Spaces/SpaceSystem.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceUserRole.cs +22 -0
- package/Source/Systems/Spaces/SpaceUserRole.cs.meta +11 -0
- package/Source/Systems/Spaces/SpacesMetadataResult.cs +146 -0
- package/Source/Systems/Spaces/SpacesMetadataResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpacesResult.cs +132 -0
- package/Source/Systems/Spaces/SpacesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/UserRoleCollectionResult.cs +146 -0
- package/Source/Systems/Spaces/UserRoleCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spaces/UserRoleInfo.cs +178 -0
- package/Source/Systems/Spaces/UserRoleInfo.cs.meta +11 -0
- package/Source/Systems/Spaces.meta +7 -0
- package/Source/Systems/Spatial/Anchor.cs +534 -0
- package/Source/Systems/Spatial/Anchor.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorCollectionResult.cs +117 -0
- package/Source/Systems/Spatial/AnchorCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorProvider.cs +20 -0
- package/Source/Systems/Spatial/AnchorProvider.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolution.cs +293 -0
- package/Source/Systems/Spatial/AnchorResolution.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs +119 -0
- package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolutionResult.cs +119 -0
- package/Source/Systems/Spatial/AnchorResolutionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResult.cs +111 -0
- package/Source/Systems/Spatial/AnchorResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorSystem.cs +738 -0
- package/Source/Systems/Spatial/AnchorSystem.cs.meta +11 -0
- package/Source/Systems/Spatial/EPointOfInterestType.cs +20 -0
- package/Source/Systems/Spatial/EPointOfInterestType.cs.meta +11 -0
- package/Source/Systems/Spatial/GeoLocation.cs +202 -0
- package/Source/Systems/Spatial/GeoLocation.cs.meta +11 -0
- package/Source/Systems/Spatial/OlyAnchorPosition.cs +216 -0
- package/Source/Systems/Spatial/OlyAnchorPosition.cs.meta +11 -0
- package/Source/Systems/Spatial/OlyRotation.cs +250 -0
- package/Source/Systems/Spatial/OlyRotation.cs.meta +11 -0
- package/Source/Systems/Spatial/POICollectionResult.cs +117 -0
- package/Source/Systems/Spatial/POICollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/POIResult.cs +113 -0
- package/Source/Systems/Spatial/POIResult.cs.meta +11 -0
- package/Source/Systems/Spatial/PointOfInterest.cs +463 -0
- package/Source/Systems/Spatial/PointOfInterest.cs.meta +11 -0
- package/Source/Systems/Spatial/PointOfInterestSystem.cs +314 -0
- package/Source/Systems/Spatial/PointOfInterestSystem.cs.meta +11 -0
- package/Source/Systems/Spatial.meta +7 -0
- package/Source/Systems/StringArrayResult.cs +146 -0
- package/Source/Systems/StringArrayResult.cs.meta +11 -0
- package/Source/Systems/StringResult.cs +149 -0
- package/Source/Systems/StringResult.cs.meta +11 -0
- package/Source/Systems/SystemBase.cs +84 -0
- package/Source/Systems/SystemBase.cs.meta +11 -0
- package/Source/Systems/SystemsManager.cs +474 -0
- package/Source/Systems/SystemsManager.cs.meta +11 -0
- package/Source/Systems/UInt64Result.cs +146 -0
- package/Source/Systems/UInt64Result.cs.meta +11 -0
- package/Source/Systems/Users/AgoraUserTokenParams.cs +326 -0
- package/Source/Systems/Users/AgoraUserTokenParams.cs.meta +11 -0
- package/Source/Systems/Users/AgoraUserTokenResult.cs +130 -0
- package/Source/Systems/Users/AgoraUserTokenResult.cs.meta +11 -0
- package/Source/Systems/Users/BasicProfile.cs +259 -0
- package/Source/Systems/Users/BasicProfile.cs.meta +11 -0
- package/Source/Systems/Users/BasicProfilesResult.cs +112 -0
- package/Source/Systems/Users/BasicProfilesResult.cs.meta +11 -0
- package/Source/Systems/Users/ELoginState.cs +25 -0
- package/Source/Systems/Users/ELoginState.cs.meta +11 -0
- package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs +28 -0
- package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs.meta +11 -0
- package/Source/Systems/Users/LoginState.cs +304 -0
- package/Source/Systems/Users/LoginState.cs.meta +11 -0
- package/Source/Systems/Users/LoginStateResult.cs +126 -0
- package/Source/Systems/Users/LoginStateResult.cs.meta +11 -0
- package/Source/Systems/Users/LoginTokenInfo.cs +224 -0
- package/Source/Systems/Users/LoginTokenInfo.cs.meta +11 -0
- package/Source/Systems/Users/LoginTokenReceived.cs +129 -0
- package/Source/Systems/Users/LoginTokenReceived.cs.meta +11 -0
- package/Source/Systems/Users/LogoutResult.cs +105 -0
- package/Source/Systems/Users/LogoutResult.cs.meta +11 -0
- package/Source/Systems/Users/PingResponseReceived.cs +106 -0
- package/Source/Systems/Users/PingResponseReceived.cs.meta +11 -0
- package/Source/Systems/Users/Profile.cs +367 -0
- package/Source/Systems/Users/Profile.cs.meta +11 -0
- package/Source/Systems/Users/ProfileResult.cs +110 -0
- package/Source/Systems/Users/ProfileResult.cs.meta +11 -0
- package/Source/Systems/Users/ProviderDetailsResult.cs +142 -0
- package/Source/Systems/Users/ProviderDetailsResult.cs.meta +11 -0
- package/Source/Systems/Users/ThirdPartyProviderDetails.cs +231 -0
- package/Source/Systems/Users/ThirdPartyProviderDetails.cs.meta +11 -0
- package/Source/Systems/Users/UserSystem.cs +1468 -0
- package/Source/Systems/Users/UserSystem.cs.meta +11 -0
- package/Source/Systems/Users.meta +7 -0
- package/Source/Systems/Voip/VoipSystem.cs +132 -0
- package/Source/Systems/Voip/VoipSystem.cs.meta +11 -0
- package/Source/Systems/Voip.meta +7 -0
- package/Source/Systems.meta +7 -0
- package/Source/Web/EResponseCodes.cs +83 -0
- package/Source/Web/EResponseCodes.cs.meta +11 -0
- package/Source/Web.meta +7 -0
- package/Source/WrapperHelper.cs +96 -0
- package/Source/WrapperHelper.cs.meta +11 -0
- package/Source.meta +7 -0
- package/android64/libConnectedSpacesPlatform.so +0 -0
- package/android64/libConnectedSpacesPlatform.so.meta +79 -0
- package/android64/libConnectedSpacesPlatform_D.so +0 -0
- package/android64/libConnectedSpacesPlatform_D.so.meta +79 -0
- package/android64.meta +7 -0
- package/package.json +13 -0
- package/package.json.meta +7 -0
- package/windows/ConnectedSpacesPlatform.dll +0 -0
- package/windows/ConnectedSpacesPlatform.dll.meta +79 -0
- package/windows/ConnectedSpacesPlatform_D.dll +0 -0
- package/windows/ConnectedSpacesPlatform_D.dll.meta +79 -0
- package/windows.meta +7 -0
|
@@ -0,0 +1,563 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Systems
|
|
14
|
+
{
|
|
15
|
+
/// @ingroup Event Ticketing System
|
|
16
|
+
/// <summary>System that allows creation and management of ticketed events for spaces.</summary>
|
|
17
|
+
|
|
18
|
+
public class EventTicketingSystem : Csp.Systems.SystemBase
|
|
19
|
+
{
|
|
20
|
+
internal override string _safeTypeName { get; } = "csp_systems_EventTicketingSystem";
|
|
21
|
+
|
|
22
|
+
#region P/Invoke
|
|
23
|
+
#pragma warning disable IDE1006
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
[
|
|
28
|
+
DllImport(
|
|
29
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
30
|
+
"__Internal"
|
|
31
|
+
#elif DEBUG
|
|
32
|
+
"ConnectedSpacesPlatform_D"
|
|
33
|
+
#else
|
|
34
|
+
"ConnectedSpacesPlatform"
|
|
35
|
+
#endif
|
|
36
|
+
),
|
|
37
|
+
SuppressUnmanagedCodeSecurity
|
|
38
|
+
]
|
|
39
|
+
static extern void csp_systems_EventTicketingSystem_Dtor(IntPtr @class);
|
|
40
|
+
|
|
41
|
+
[
|
|
42
|
+
DllImport(
|
|
43
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
44
|
+
"__Internal"
|
|
45
|
+
#elif DEBUG
|
|
46
|
+
"ConnectedSpacesPlatform_D"
|
|
47
|
+
#else
|
|
48
|
+
"ConnectedSpacesPlatform"
|
|
49
|
+
#endif
|
|
50
|
+
),
|
|
51
|
+
SuppressUnmanagedCodeSecurity
|
|
52
|
+
]
|
|
53
|
+
static extern void csp_systems_EventTicketingSystem_CreateTicketedEvent_void_StringRC_EventTicketingVendor_StringRC_StringRC_bool_TicketedEventResultCallback(
|
|
54
|
+
IntPtr @class,
|
|
55
|
+
string SpaceId,
|
|
56
|
+
EventTicketingVendor Vendor,
|
|
57
|
+
string VendorEventId,
|
|
58
|
+
string VendorEventUri,
|
|
59
|
+
bool IsTicketingActive,
|
|
60
|
+
CreateTicketedEventCallbackDelegate callback,
|
|
61
|
+
IntPtr callbackStateObject
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
[
|
|
65
|
+
DllImport(
|
|
66
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
67
|
+
"__Internal"
|
|
68
|
+
#elif DEBUG
|
|
69
|
+
"ConnectedSpacesPlatform_D"
|
|
70
|
+
#else
|
|
71
|
+
"ConnectedSpacesPlatform"
|
|
72
|
+
#endif
|
|
73
|
+
),
|
|
74
|
+
SuppressUnmanagedCodeSecurity
|
|
75
|
+
]
|
|
76
|
+
static extern void csp_systems_EventTicketingSystem_UpdateTicketedEvent_void_StringRC_StringRC_EventTicketingVendor_StringRC_StringRC_bool_TicketedEventResultCallback(
|
|
77
|
+
IntPtr @class,
|
|
78
|
+
string SpaceId,
|
|
79
|
+
string EventId,
|
|
80
|
+
EventTicketingVendor Vendor,
|
|
81
|
+
string VendorEventId,
|
|
82
|
+
string VendorEventUri,
|
|
83
|
+
bool IsTicketingActive,
|
|
84
|
+
UpdateTicketedEventCallbackDelegate callback,
|
|
85
|
+
IntPtr callbackStateObject
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
[
|
|
89
|
+
DllImport(
|
|
90
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
91
|
+
"__Internal"
|
|
92
|
+
#elif DEBUG
|
|
93
|
+
"ConnectedSpacesPlatform_D"
|
|
94
|
+
#else
|
|
95
|
+
"ConnectedSpacesPlatform"
|
|
96
|
+
#endif
|
|
97
|
+
),
|
|
98
|
+
SuppressUnmanagedCodeSecurity
|
|
99
|
+
]
|
|
100
|
+
static extern void csp_systems_EventTicketingSystem_GetTicketedEvents_void_ArrayRC_intRC_intRC_TicketedEventCollectionResultCallback(
|
|
101
|
+
IntPtr @class,
|
|
102
|
+
IntPtr SpaceIds,
|
|
103
|
+
IntPtr Skip,
|
|
104
|
+
IntPtr Limit,
|
|
105
|
+
GetTicketedEventsCallbackDelegate callback,
|
|
106
|
+
IntPtr callbackStateObject
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
[
|
|
110
|
+
DllImport(
|
|
111
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
112
|
+
"__Internal"
|
|
113
|
+
#elif DEBUG
|
|
114
|
+
"ConnectedSpacesPlatform_D"
|
|
115
|
+
#else
|
|
116
|
+
"ConnectedSpacesPlatform"
|
|
117
|
+
#endif
|
|
118
|
+
),
|
|
119
|
+
SuppressUnmanagedCodeSecurity
|
|
120
|
+
]
|
|
121
|
+
static extern void csp_systems_EventTicketingSystem_SubmitEventTicket_void_StringRC_EventTicketingVendor_StringRC_StringRC_StringRC_EventTicketResultCallback(
|
|
122
|
+
IntPtr @class,
|
|
123
|
+
string SpaceId,
|
|
124
|
+
EventTicketingVendor Vendor,
|
|
125
|
+
string VendorEventId,
|
|
126
|
+
string VendorTicketId,
|
|
127
|
+
string OnBehalfOfUserId,
|
|
128
|
+
SubmitEventTicketCallbackDelegate callback,
|
|
129
|
+
IntPtr callbackStateObject
|
|
130
|
+
);
|
|
131
|
+
|
|
132
|
+
[
|
|
133
|
+
DllImport(
|
|
134
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
135
|
+
"__Internal"
|
|
136
|
+
#elif DEBUG
|
|
137
|
+
"ConnectedSpacesPlatform_D"
|
|
138
|
+
#else
|
|
139
|
+
"ConnectedSpacesPlatform"
|
|
140
|
+
#endif
|
|
141
|
+
),
|
|
142
|
+
SuppressUnmanagedCodeSecurity
|
|
143
|
+
]
|
|
144
|
+
static extern void csp_systems_EventTicketingSystem_GetVendorAuthorizeInfo_void_EventTicketingVendor_StringRC_TicketedEventVendorAuthorizeInfoCallback(
|
|
145
|
+
IntPtr @class,
|
|
146
|
+
EventTicketingVendor Vendor,
|
|
147
|
+
string UserId,
|
|
148
|
+
GetVendorAuthorizeInfoCallbackDelegate callback,
|
|
149
|
+
IntPtr callbackStateObject
|
|
150
|
+
);
|
|
151
|
+
|
|
152
|
+
[
|
|
153
|
+
DllImport(
|
|
154
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
155
|
+
"__Internal"
|
|
156
|
+
#elif DEBUG
|
|
157
|
+
"ConnectedSpacesPlatform_D"
|
|
158
|
+
#else
|
|
159
|
+
"ConnectedSpacesPlatform"
|
|
160
|
+
#endif
|
|
161
|
+
),
|
|
162
|
+
SuppressUnmanagedCodeSecurity
|
|
163
|
+
]
|
|
164
|
+
static extern void csp_systems_EventTicketingSystem_GetIsSpaceTicketed_void_StringRC_SpaceIsTicketedResultCallback(
|
|
165
|
+
IntPtr @class,
|
|
166
|
+
string SpaceId,
|
|
167
|
+
GetIsSpaceTicketedCallbackDelegate callback,
|
|
168
|
+
IntPtr callbackStateObject
|
|
169
|
+
);
|
|
170
|
+
|
|
171
|
+
[
|
|
172
|
+
DllImport(
|
|
173
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
174
|
+
"__Internal"
|
|
175
|
+
#elif DEBUG
|
|
176
|
+
"ConnectedSpacesPlatform_D"
|
|
177
|
+
#else
|
|
178
|
+
"ConnectedSpacesPlatform"
|
|
179
|
+
#endif
|
|
180
|
+
),
|
|
181
|
+
SuppressUnmanagedCodeSecurity
|
|
182
|
+
]
|
|
183
|
+
static extern NativePointer csp_systems_EventTicketingSystem_Ctor();
|
|
184
|
+
|
|
185
|
+
#pragma warning restore IDE1006
|
|
186
|
+
#endregion
|
|
187
|
+
|
|
188
|
+
internal EventTicketingSystem(NativePointer ptr) : base(ptr) { }
|
|
189
|
+
|
|
190
|
+
public EventTicketingSystem(Csp.Systems.SystemBase baseInstance)
|
|
191
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
192
|
+
{
|
|
193
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
194
|
+
baseInstance._ownsPtr = false;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
delegate void CreateTicketedEventCallbackDelegate(IntPtr _StateObject__, NativePointer Result);
|
|
198
|
+
|
|
199
|
+
delegate void UpdateTicketedEventCallbackDelegate(IntPtr _StateObject__, NativePointer Result);
|
|
200
|
+
|
|
201
|
+
delegate void GetTicketedEventsCallbackDelegate(IntPtr _StateObject__, NativePointer Result);
|
|
202
|
+
|
|
203
|
+
delegate void SubmitEventTicketCallbackDelegate(IntPtr _StateObject__, NativePointer Result);
|
|
204
|
+
|
|
205
|
+
delegate void GetVendorAuthorizeInfoCallbackDelegate(IntPtr _StateObject__, NativePointer Result);
|
|
206
|
+
|
|
207
|
+
delegate void GetIsSpaceTicketedCallbackDelegate(IntPtr _StateObject__, NativePointer Result);
|
|
208
|
+
|
|
209
|
+
~EventTicketingSystem()
|
|
210
|
+
{
|
|
211
|
+
//RealDispose();
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
void RealDispose()
|
|
215
|
+
{
|
|
216
|
+
if (_ownsPtr && !_disposed)
|
|
217
|
+
{
|
|
218
|
+
csp_systems_EventTicketingSystem_Dtor(_ptr);
|
|
219
|
+
_disposed = true;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
_disposed = true;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
new public void Dispose()
|
|
226
|
+
{
|
|
227
|
+
RealDispose();
|
|
228
|
+
GC.SuppressFinalize(this);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
#if !UNITY_EDITOR && ENABLE_IL2CPP
|
|
232
|
+
[AOT.MonoPInvokeCallback (typeof (CreateTicketedEventCallbackDelegate))]
|
|
233
|
+
#endif
|
|
234
|
+
static void CreateTicketedEventCallbackDelegateFunction(IntPtr _StateObject__, NativePointer _Result)
|
|
235
|
+
{
|
|
236
|
+
var _handle = (GCHandle)_StateObject__;
|
|
237
|
+
var tcs = (TaskCompletionSource<Csp.Systems.TicketedEventResult>)_handle.Target;
|
|
238
|
+
var _this = (EventTicketingSystem)tcs.Task.AsyncState;
|
|
239
|
+
|
|
240
|
+
var task_result = new Csp.Systems.TicketedEventResult(_Result);
|
|
241
|
+
|
|
242
|
+
if (task_result.GetResultCode() == Csp.Services.EResultCode.InProgress)
|
|
243
|
+
{
|
|
244
|
+
return;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
tcs.SetResult(task_result);
|
|
248
|
+
_handle.Free();
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
static readonly CreateTicketedEventCallbackDelegate CreateTicketedEventDelegateInstance =
|
|
252
|
+
CreateTicketedEventCallbackDelegateFunction;
|
|
253
|
+
|
|
254
|
+
/// <summary>Creates a ticketed event for the given space.</summary>
|
|
255
|
+
/// <param name="SpaceId">ID of the space to create the event for.</param>
|
|
256
|
+
/// <param name="Vendor">Enum representing the vendor that the event is created with.</param>
|
|
257
|
+
/// <param name="VendorEventId">Specifies the event ID in the vendors system.</param>
|
|
258
|
+
/// <param name="VendorEventUri">Specifies the URI for the event in the vendors system.</param>
|
|
259
|
+
/// <param name="IsTicketingActive">Specifies whether ticketing is currently active for this event.</param>
|
|
260
|
+
/// <returns>The result for the request</returns>
|
|
261
|
+
|
|
262
|
+
public Task<Csp.Systems.TicketedEventResult> CreateTicketedEvent(
|
|
263
|
+
string SpaceId,
|
|
264
|
+
Csp.Systems.EventTicketingVendor Vendor,
|
|
265
|
+
string VendorEventId,
|
|
266
|
+
string VendorEventUri,
|
|
267
|
+
bool IsTicketingActive
|
|
268
|
+
) {
|
|
269
|
+
var tcs = new TaskCompletionSource<Csp.Systems.TicketedEventResult>(this);
|
|
270
|
+
var handle = GCHandle.Alloc(tcs);
|
|
271
|
+
|
|
272
|
+
csp_systems_EventTicketingSystem_CreateTicketedEvent_void_StringRC_EventTicketingVendor_StringRC_StringRC_bool_TicketedEventResultCallback(
|
|
273
|
+
_ptr,
|
|
274
|
+
SpaceId,
|
|
275
|
+
Vendor,
|
|
276
|
+
VendorEventId,
|
|
277
|
+
VendorEventUri,
|
|
278
|
+
IsTicketingActive,
|
|
279
|
+
CreateTicketedEventDelegateInstance,
|
|
280
|
+
(IntPtr)handle
|
|
281
|
+
);
|
|
282
|
+
|
|
283
|
+
return tcs.Task;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
#if !UNITY_EDITOR && ENABLE_IL2CPP
|
|
287
|
+
[AOT.MonoPInvokeCallback (typeof (UpdateTicketedEventCallbackDelegate))]
|
|
288
|
+
#endif
|
|
289
|
+
static void UpdateTicketedEventCallbackDelegateFunction(IntPtr _StateObject__, NativePointer _Result)
|
|
290
|
+
{
|
|
291
|
+
var _handle = (GCHandle)_StateObject__;
|
|
292
|
+
var tcs = (TaskCompletionSource<Csp.Systems.TicketedEventResult>)_handle.Target;
|
|
293
|
+
var _this = (EventTicketingSystem)tcs.Task.AsyncState;
|
|
294
|
+
|
|
295
|
+
var task_result = new Csp.Systems.TicketedEventResult(_Result);
|
|
296
|
+
|
|
297
|
+
if (task_result.GetResultCode() == Csp.Services.EResultCode.InProgress)
|
|
298
|
+
{
|
|
299
|
+
return;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
tcs.SetResult(task_result);
|
|
303
|
+
_handle.Free();
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
static readonly UpdateTicketedEventCallbackDelegate UpdateTicketedEventDelegateInstance =
|
|
307
|
+
UpdateTicketedEventCallbackDelegateFunction;
|
|
308
|
+
|
|
309
|
+
/// <summary>Updates a ticketed event in the given space.</summary>
|
|
310
|
+
/// <remarks>/// All parameters should be provided even if they are not new values. Empty values will overwrite</remarks>
|
|
311
|
+
/// <remarks>existing values to be empty.</remarks>
|
|
312
|
+
/// <remarks>/// @param SpaceId csp::common::String : ID of the space the event belongs to.</remarks>
|
|
313
|
+
/// <param name="EventId">ID of the Event to update.</param>
|
|
314
|
+
/// <param name="Vendor">Enum representing the vendor that the event is created with.</param>
|
|
315
|
+
/// <param name="VendorEventId">Specifies the event ID in the vendors system.</param>
|
|
316
|
+
/// <param name="VendorEventUri">Specifies the URI for the event in the vendors system.</param>
|
|
317
|
+
/// <param name="IsTicketingActive">Specifies whether ticketing is currently active for this event.</param>
|
|
318
|
+
/// <returns>The result for the request</returns>
|
|
319
|
+
|
|
320
|
+
public Task<Csp.Systems.TicketedEventResult> UpdateTicketedEvent(
|
|
321
|
+
string SpaceId,
|
|
322
|
+
string EventId,
|
|
323
|
+
Csp.Systems.EventTicketingVendor Vendor,
|
|
324
|
+
string VendorEventId,
|
|
325
|
+
string VendorEventUri,
|
|
326
|
+
bool IsTicketingActive
|
|
327
|
+
) {
|
|
328
|
+
var tcs = new TaskCompletionSource<Csp.Systems.TicketedEventResult>(this);
|
|
329
|
+
var handle = GCHandle.Alloc(tcs);
|
|
330
|
+
|
|
331
|
+
csp_systems_EventTicketingSystem_UpdateTicketedEvent_void_StringRC_StringRC_EventTicketingVendor_StringRC_StringRC_bool_TicketedEventResultCallback(
|
|
332
|
+
_ptr,
|
|
333
|
+
SpaceId,
|
|
334
|
+
EventId,
|
|
335
|
+
Vendor,
|
|
336
|
+
VendorEventId,
|
|
337
|
+
VendorEventUri,
|
|
338
|
+
IsTicketingActive,
|
|
339
|
+
UpdateTicketedEventDelegateInstance,
|
|
340
|
+
(IntPtr)handle
|
|
341
|
+
);
|
|
342
|
+
|
|
343
|
+
return tcs.Task;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
#if !UNITY_EDITOR && ENABLE_IL2CPP
|
|
347
|
+
[AOT.MonoPInvokeCallback (typeof (GetTicketedEventsCallbackDelegate))]
|
|
348
|
+
#endif
|
|
349
|
+
static void GetTicketedEventsCallbackDelegateFunction(IntPtr _StateObject__, NativePointer _Result)
|
|
350
|
+
{
|
|
351
|
+
var _handle = (GCHandle)_StateObject__;
|
|
352
|
+
var tcs = (TaskCompletionSource<Csp.Systems.TicketedEventCollectionResult>)_handle.Target;
|
|
353
|
+
var _this = (EventTicketingSystem)tcs.Task.AsyncState;
|
|
354
|
+
|
|
355
|
+
var task_result = new Csp.Systems.TicketedEventCollectionResult(_Result);
|
|
356
|
+
|
|
357
|
+
if (task_result.GetResultCode() == Csp.Services.EResultCode.InProgress)
|
|
358
|
+
{
|
|
359
|
+
return;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
tcs.SetResult(task_result);
|
|
363
|
+
_handle.Free();
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
static readonly GetTicketedEventsCallbackDelegate GetTicketedEventsDelegateInstance =
|
|
367
|
+
GetTicketedEventsCallbackDelegateFunction;
|
|
368
|
+
|
|
369
|
+
/// <summary>Creates a ticketed event for the given space.</summary>
|
|
370
|
+
/// <param name="SpaceIds">IDs of the spaces to get the events for.</param>
|
|
371
|
+
/// <param name="Skip">Optional number of results that will be skipped from the result.</param>
|
|
372
|
+
/// <param name="Limit">Optional maximum number of results to be retrieved.</param>
|
|
373
|
+
/// <returns>The result for the request</returns>
|
|
374
|
+
|
|
375
|
+
public Task<Csp.Systems.TicketedEventCollectionResult> GetTicketedEvents(
|
|
376
|
+
Csp.Common.Array<string> SpaceIds,
|
|
377
|
+
int? Skip,
|
|
378
|
+
int? Limit
|
|
379
|
+
) {
|
|
380
|
+
var tcs = new TaskCompletionSource<Csp.Systems.TicketedEventCollectionResult>(this);
|
|
381
|
+
var handle = GCHandle.Alloc(tcs);
|
|
382
|
+
|
|
383
|
+
var SkipPointer = IntPtr.Zero;
|
|
384
|
+
unsafe
|
|
385
|
+
{
|
|
386
|
+
if (Skip.HasValue)
|
|
387
|
+
{
|
|
388
|
+
var ptr = stackalloc int[1];
|
|
389
|
+
*ptr = Skip.Value;
|
|
390
|
+
SkipPointer = (IntPtr)ptr;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
var LimitPointer = IntPtr.Zero;
|
|
394
|
+
unsafe
|
|
395
|
+
{
|
|
396
|
+
if (Limit.HasValue)
|
|
397
|
+
{
|
|
398
|
+
var ptr = stackalloc int[1];
|
|
399
|
+
*ptr = Limit.Value;
|
|
400
|
+
LimitPointer = (IntPtr)ptr;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
csp_systems_EventTicketingSystem_GetTicketedEvents_void_ArrayRC_intRC_intRC_TicketedEventCollectionResultCallback(
|
|
405
|
+
_ptr,
|
|
406
|
+
SpaceIds._ptr,
|
|
407
|
+
SkipPointer,
|
|
408
|
+
LimitPointer,
|
|
409
|
+
GetTicketedEventsDelegateInstance,
|
|
410
|
+
(IntPtr)handle
|
|
411
|
+
);
|
|
412
|
+
|
|
413
|
+
return tcs.Task;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
#if !UNITY_EDITOR && ENABLE_IL2CPP
|
|
417
|
+
[AOT.MonoPInvokeCallback (typeof (SubmitEventTicketCallbackDelegate))]
|
|
418
|
+
#endif
|
|
419
|
+
static void SubmitEventTicketCallbackDelegateFunction(IntPtr _StateObject__, NativePointer _Result)
|
|
420
|
+
{
|
|
421
|
+
var _handle = (GCHandle)_StateObject__;
|
|
422
|
+
var tcs = (TaskCompletionSource<Csp.Systems.EventTicketResult>)_handle.Target;
|
|
423
|
+
var _this = (EventTicketingSystem)tcs.Task.AsyncState;
|
|
424
|
+
|
|
425
|
+
var task_result = new Csp.Systems.EventTicketResult(_Result);
|
|
426
|
+
|
|
427
|
+
if (task_result.GetResultCode() == Csp.Services.EResultCode.InProgress)
|
|
428
|
+
{
|
|
429
|
+
return;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
tcs.SetResult(task_result);
|
|
433
|
+
_handle.Free();
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
static readonly SubmitEventTicketCallbackDelegate SubmitEventTicketDelegateInstance =
|
|
437
|
+
SubmitEventTicketCallbackDelegateFunction;
|
|
438
|
+
|
|
439
|
+
/// <summary>Submits a ticket from a vendor for the given event.</summary>
|
|
440
|
+
/// <remarks>/// @param SpaceId csp::common::String : ID of the space the event belongs to.</remarks>
|
|
441
|
+
/// <param name="Vendor">Enum representing the vendor that the event is created with.</param>
|
|
442
|
+
/// <param name="VendorEventId">Specifies the event ID in the vendors system.</param>
|
|
443
|
+
/// <param name="VendorTicketId">Specifies the ticket ID in the vendors system.</param>
|
|
444
|
+
/// <param name="OnBehalfOfUserId">Optionally submit the ticket for another user. Requires super user</param>
|
|
445
|
+
/// <remarks>permissions.</remarks>
|
|
446
|
+
/// <returns>The result for the request</returns>
|
|
447
|
+
|
|
448
|
+
public Task<Csp.Systems.EventTicketResult> SubmitEventTicket(
|
|
449
|
+
string SpaceId,
|
|
450
|
+
Csp.Systems.EventTicketingVendor Vendor,
|
|
451
|
+
string VendorEventId,
|
|
452
|
+
string VendorTicketId,
|
|
453
|
+
string? OnBehalfOfUserId
|
|
454
|
+
) {
|
|
455
|
+
var tcs = new TaskCompletionSource<Csp.Systems.EventTicketResult>(this);
|
|
456
|
+
var handle = GCHandle.Alloc(tcs);
|
|
457
|
+
|
|
458
|
+
csp_systems_EventTicketingSystem_SubmitEventTicket_void_StringRC_EventTicketingVendor_StringRC_StringRC_StringRC_EventTicketResultCallback(
|
|
459
|
+
_ptr,
|
|
460
|
+
SpaceId,
|
|
461
|
+
Vendor,
|
|
462
|
+
VendorEventId,
|
|
463
|
+
VendorTicketId,
|
|
464
|
+
OnBehalfOfUserId,
|
|
465
|
+
SubmitEventTicketDelegateInstance,
|
|
466
|
+
(IntPtr)handle
|
|
467
|
+
);
|
|
468
|
+
|
|
469
|
+
return tcs.Task;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
#if !UNITY_EDITOR && ENABLE_IL2CPP
|
|
473
|
+
[AOT.MonoPInvokeCallback (typeof (GetVendorAuthorizeInfoCallbackDelegate))]
|
|
474
|
+
#endif
|
|
475
|
+
static void GetVendorAuthorizeInfoCallbackDelegateFunction(IntPtr _StateObject__, NativePointer _Result)
|
|
476
|
+
{
|
|
477
|
+
var _handle = (GCHandle)_StateObject__;
|
|
478
|
+
var tcs = (TaskCompletionSource<Csp.Systems.TicketedEventVendorAuthInfoResult>)_handle.Target;
|
|
479
|
+
var _this = (EventTicketingSystem)tcs.Task.AsyncState;
|
|
480
|
+
|
|
481
|
+
var task_result = new Csp.Systems.TicketedEventVendorAuthInfoResult(_Result);
|
|
482
|
+
|
|
483
|
+
if (task_result.GetResultCode() == Csp.Services.EResultCode.InProgress)
|
|
484
|
+
{
|
|
485
|
+
return;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
tcs.SetResult(task_result);
|
|
489
|
+
_handle.Free();
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
static readonly GetVendorAuthorizeInfoCallbackDelegate GetVendorAuthorizeInfoDelegateInstance =
|
|
493
|
+
GetVendorAuthorizeInfoCallbackDelegateFunction;
|
|
494
|
+
|
|
495
|
+
/// <summary> Looks up the basic info required by a client to initiate an oauth2 flow with the specified vendor.</summary>
|
|
496
|
+
/// <param name="Vendor">The vendor type to retrieve info for.</param>
|
|
497
|
+
/// <param name="UserId">The ID of the user to obtain authentication info for.</param>
|
|
498
|
+
/// <returns>The result for the request</returns>
|
|
499
|
+
|
|
500
|
+
public Task<Csp.Systems.TicketedEventVendorAuthInfoResult> GetVendorAuthorizeInfo(
|
|
501
|
+
Csp.Systems.EventTicketingVendor Vendor,
|
|
502
|
+
string UserId
|
|
503
|
+
) {
|
|
504
|
+
var tcs = new TaskCompletionSource<Csp.Systems.TicketedEventVendorAuthInfoResult>(this);
|
|
505
|
+
var handle = GCHandle.Alloc(tcs);
|
|
506
|
+
|
|
507
|
+
csp_systems_EventTicketingSystem_GetVendorAuthorizeInfo_void_EventTicketingVendor_StringRC_TicketedEventVendorAuthorizeInfoCallback(
|
|
508
|
+
_ptr,
|
|
509
|
+
Vendor,
|
|
510
|
+
UserId,
|
|
511
|
+
GetVendorAuthorizeInfoDelegateInstance,
|
|
512
|
+
(IntPtr)handle
|
|
513
|
+
);
|
|
514
|
+
|
|
515
|
+
return tcs.Task;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
#if !UNITY_EDITOR && ENABLE_IL2CPP
|
|
519
|
+
[AOT.MonoPInvokeCallback (typeof (GetIsSpaceTicketedCallbackDelegate))]
|
|
520
|
+
#endif
|
|
521
|
+
static void GetIsSpaceTicketedCallbackDelegateFunction(IntPtr _StateObject__, NativePointer _Result)
|
|
522
|
+
{
|
|
523
|
+
var _handle = (GCHandle)_StateObject__;
|
|
524
|
+
var tcs = (TaskCompletionSource<Csp.Systems.SpaceIsTicketedResult>)_handle.Target;
|
|
525
|
+
var _this = (EventTicketingSystem)tcs.Task.AsyncState;
|
|
526
|
+
|
|
527
|
+
var task_result = new Csp.Systems.SpaceIsTicketedResult(_Result);
|
|
528
|
+
|
|
529
|
+
if (task_result.GetResultCode() == Csp.Services.EResultCode.InProgress)
|
|
530
|
+
{
|
|
531
|
+
return;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
tcs.SetResult(task_result);
|
|
535
|
+
_handle.Free();
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
static readonly GetIsSpaceTicketedCallbackDelegate GetIsSpaceTicketedDelegateInstance =
|
|
539
|
+
GetIsSpaceTicketedCallbackDelegateFunction;
|
|
540
|
+
|
|
541
|
+
/// <summary>Gets the ticketed status of a space given by ID.</summary>
|
|
542
|
+
/// <param name="SpaceId">The space ID to check the status for.</param>
|
|
543
|
+
/// <returns>The result for the request</returns>
|
|
544
|
+
|
|
545
|
+
public Task<Csp.Systems.SpaceIsTicketedResult> GetIsSpaceTicketed(string SpaceId)
|
|
546
|
+
{
|
|
547
|
+
var tcs = new TaskCompletionSource<Csp.Systems.SpaceIsTicketedResult>(this);
|
|
548
|
+
var handle = GCHandle.Alloc(tcs);
|
|
549
|
+
|
|
550
|
+
csp_systems_EventTicketingSystem_GetIsSpaceTicketed_void_StringRC_SpaceIsTicketedResultCallback(
|
|
551
|
+
_ptr,
|
|
552
|
+
SpaceId,
|
|
553
|
+
GetIsSpaceTicketedDelegateInstance,
|
|
554
|
+
(IntPtr)handle
|
|
555
|
+
);
|
|
556
|
+
|
|
557
|
+
return tcs.Task;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
protected EventTicketingSystem() { }
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 2a6db4eb5f104210bbb45ef493bfac02
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Systems
|
|
14
|
+
{
|
|
15
|
+
/// @ingroup Event Ticketing System
|
|
16
|
+
/// <summary>Enum representing the third party vendor used for ticketing.</summary>
|
|
17
|
+
|
|
18
|
+
public enum EventTicketingVendor
|
|
19
|
+
{
|
|
20
|
+
Eventbrite = 0,
|
|
21
|
+
Unknown,
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c86dc784c2f3496da31a7c3618568b79
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|