Skip to content

Commit 331af9b

Browse files
try fix resource
1 parent 4f0f65a commit 331af9b

File tree

8 files changed

+1532
-23
lines changed

8 files changed

+1532
-23
lines changed

features/dd-sdk-android-rum/api/apiSurface

Lines changed: 344 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,34 @@ data class com.datadog.android.rum.model.ActionEvent
631631
fun toJson(): com.google.gson.JsonElement
632632
companion object
633633
fun fromJson(kotlin.String): Type
634+
data class com.datadog.android.rum.model.AppLaunchProperties
635+
constructor(kotlin.String, kotlin.String? = null, kotlin.String? = null, AppLaunchMetric, kotlin.Number, StartupType? = null, kotlin.Boolean? = null, kotlin.Boolean? = null)
636+
val type: kotlin.String
637+
fun toJson(): com.google.gson.JsonElement
638+
companion object
639+
fun fromJson(kotlin.String): AppLaunchProperties
640+
fun fromJsonObject(com.google.gson.JsonObject): AppLaunchProperties
641+
enum AppLaunchMetric
642+
constructor(kotlin.String)
643+
- TTID
644+
- TTFD
645+
fun toJson(): com.google.gson.JsonElement
646+
companion object
647+
fun fromJson(kotlin.String): AppLaunchMetric
648+
enum StartupType
649+
constructor(kotlin.String)
650+
- COLD_START
651+
- WARM_START
652+
fun toJson(): com.google.gson.JsonElement
653+
companion object
654+
fun fromJson(kotlin.String): StartupType
655+
data class com.datadog.android.rum.model.DurationProperties
656+
constructor(kotlin.String, kotlin.String? = null, kotlin.String? = null, kotlin.Number)
657+
val type: kotlin.String
658+
fun toJson(): com.google.gson.JsonElement
659+
companion object
660+
fun fromJson(kotlin.String): DurationProperties
661+
fun fromJsonObject(com.google.gson.JsonObject): DurationProperties
634662
data class com.datadog.android.rum.model.ErrorEvent
635663
constructor(kotlin.Long, Application, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, ErrorEventSession, ErrorEventSource? = null, ErrorEventView, Usr? = null, Account? = null, Connectivity? = null, Display? = null, Synthetics? = null, CiTest? = null, Os? = null, Device? = null, Dd, Context? = null, Action? = null, Container? = null, Error, Freeze? = null, Context? = null)
636664
val type: kotlin.String
@@ -981,6 +1009,30 @@ data class com.datadog.android.rum.model.ErrorEvent
9811009
fun toJson(): com.google.gson.JsonElement
9821010
companion object
9831011
fun fromJson(kotlin.String): ProviderType
1012+
data class com.datadog.android.rum.model.FeatureOperationProperties
1013+
constructor(kotlin.String, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, StepType? = null, FailureReason? = null)
1014+
val type: kotlin.String
1015+
fun toJson(): com.google.gson.JsonElement
1016+
companion object
1017+
fun fromJson(kotlin.String): FeatureOperationProperties
1018+
fun fromJsonObject(com.google.gson.JsonObject): FeatureOperationProperties
1019+
enum StepType
1020+
constructor(kotlin.String)
1021+
- START
1022+
- UPDATE
1023+
- RETRY
1024+
- END
1025+
fun toJson(): com.google.gson.JsonElement
1026+
companion object
1027+
fun fromJson(kotlin.String): StepType
1028+
enum FailureReason
1029+
constructor(kotlin.String)
1030+
- ERROR
1031+
- ABANDONED
1032+
- OTHER
1033+
fun toJson(): com.google.gson.JsonElement
1034+
companion object
1035+
fun fromJson(kotlin.String): FailureReason
9841036
data class com.datadog.android.rum.model.LongTaskEvent
9851037
constructor(kotlin.Long, Application, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, LongTaskEventSession, LongTaskEventSource? = null, LongTaskEventView, Usr? = null, Account? = null, Connectivity? = null, Display? = null, Synthetics? = null, CiTest? = null, Os? = null, Device? = null, Dd, Context? = null, Action? = null, Container? = null, LongTask)
9861038
val type: kotlin.String
@@ -2507,6 +2559,298 @@ data class com.datadog.android.rum.model.ViewEvent
25072559
fun toJson(): com.google.gson.JsonElement
25082560
companion object
25092561
fun fromJson(kotlin.String): ErrorReason
2562+
data class com.datadog.android.rum.model.VitalEvent
2563+
constructor(kotlin.Long, Application, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, VitalEventSession, VitalEventSource? = null, VitalEventView? = null, Usr? = null, Account? = null, Connectivity? = null, Display? = null, Synthetics? = null, CiTest? = null, Os? = null, Device? = null, Dd, Context? = null, Container? = null, Vital)
2564+
val type: kotlin.String
2565+
fun toJson(): com.google.gson.JsonElement
2566+
companion object
2567+
fun fromJson(kotlin.String): VitalEvent
2568+
fun fromJsonObject(com.google.gson.JsonObject): VitalEvent
2569+
data class Application
2570+
constructor(kotlin.String, kotlin.String? = null)
2571+
fun toJson(): com.google.gson.JsonElement
2572+
companion object
2573+
fun fromJson(kotlin.String): Application
2574+
fun fromJsonObject(com.google.gson.JsonObject): Application
2575+
data class VitalEventSession
2576+
constructor(kotlin.String, VitalEventSessionType, kotlin.Boolean? = null)
2577+
fun toJson(): com.google.gson.JsonElement
2578+
companion object
2579+
fun fromJson(kotlin.String): VitalEventSession
2580+
fun fromJsonObject(com.google.gson.JsonObject): VitalEventSession
2581+
data class VitalEventView
2582+
constructor(kotlin.String, kotlin.String? = null, kotlin.String, kotlin.String? = null)
2583+
fun toJson(): com.google.gson.JsonElement
2584+
companion object
2585+
fun fromJson(kotlin.String): VitalEventView
2586+
fun fromJsonObject(com.google.gson.JsonObject): VitalEventView
2587+
data class Usr
2588+
constructor(kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.collections.MutableMap<kotlin.String, kotlin.Any?> = mutableMapOf())
2589+
fun toJson(): com.google.gson.JsonElement
2590+
companion object
2591+
fun fromJson(kotlin.String): Usr
2592+
fun fromJsonObject(com.google.gson.JsonObject): Usr
2593+
data class Account
2594+
constructor(kotlin.String, kotlin.String? = null, kotlin.collections.MutableMap<kotlin.String, kotlin.Any?> = mutableMapOf())
2595+
fun toJson(): com.google.gson.JsonElement
2596+
companion object
2597+
fun fromJson(kotlin.String): Account
2598+
fun fromJsonObject(com.google.gson.JsonObject): Account
2599+
data class Connectivity
2600+
constructor(ConnectivityStatus, kotlin.collections.List<Interface>? = null, EffectiveType? = null, Cellular? = null)
2601+
fun toJson(): com.google.gson.JsonElement
2602+
companion object
2603+
fun fromJson(kotlin.String): Connectivity
2604+
fun fromJsonObject(com.google.gson.JsonObject): Connectivity
2605+
data class Display
2606+
constructor(Viewport? = null)
2607+
fun toJson(): com.google.gson.JsonElement
2608+
companion object
2609+
fun fromJson(kotlin.String): Display
2610+
fun fromJsonObject(com.google.gson.JsonObject): Display
2611+
data class Synthetics
2612+
constructor(kotlin.String, kotlin.String, kotlin.Boolean? = null)
2613+
fun toJson(): com.google.gson.JsonElement
2614+
companion object
2615+
fun fromJson(kotlin.String): Synthetics
2616+
fun fromJsonObject(com.google.gson.JsonObject): Synthetics
2617+
data class CiTest
2618+
constructor(kotlin.String)
2619+
fun toJson(): com.google.gson.JsonElement
2620+
companion object
2621+
fun fromJson(kotlin.String): CiTest
2622+
fun fromJsonObject(com.google.gson.JsonObject): CiTest
2623+
data class Os
2624+
constructor(kotlin.String, kotlin.String, kotlin.String? = null, kotlin.String)
2625+
fun toJson(): com.google.gson.JsonElement
2626+
companion object
2627+
fun fromJson(kotlin.String): Os
2628+
fun fromJsonObject(com.google.gson.JsonObject): Os
2629+
data class Device
2630+
constructor(DeviceType? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, kotlin.collections.List<kotlin.String>? = null, kotlin.String? = null, kotlin.Number? = null, kotlin.Boolean? = null, kotlin.Number? = null)
2631+
fun toJson(): com.google.gson.JsonElement
2632+
companion object
2633+
fun fromJson(kotlin.String): Device
2634+
fun fromJsonObject(com.google.gson.JsonObject): Device
2635+
data class Dd
2636+
constructor(DdSession? = null, Configuration? = null, kotlin.String? = null, kotlin.String? = null, Vital1? = null, Profiling? = null)
2637+
val formatVersion: kotlin.Long
2638+
fun toJson(): com.google.gson.JsonElement
2639+
companion object
2640+
fun fromJson(kotlin.String): Dd
2641+
fun fromJsonObject(com.google.gson.JsonObject): Dd
2642+
data class Context
2643+
constructor(kotlin.collections.MutableMap<kotlin.String, kotlin.Any?> = mutableMapOf())
2644+
fun toJson(): com.google.gson.JsonElement
2645+
companion object
2646+
fun fromJson(kotlin.String): Context
2647+
fun fromJsonObject(com.google.gson.JsonObject): Context
2648+
data class Container
2649+
constructor(ContainerView, VitalEventSource)
2650+
fun toJson(): com.google.gson.JsonElement
2651+
companion object
2652+
fun fromJson(kotlin.String): Container
2653+
fun fromJsonObject(com.google.gson.JsonObject): Container
2654+
sealed class Vital
2655+
abstract fun toJson(): com.google.gson.JsonElement
2656+
data class DurationProperties : Vital
2657+
constructor(kotlin.String, kotlin.String? = null, kotlin.String? = null, kotlin.Number)
2658+
val type: kotlin.String
2659+
override fun toJson(): com.google.gson.JsonElement
2660+
companion object
2661+
fun fromJson(kotlin.String): DurationProperties
2662+
fun fromJsonObject(com.google.gson.JsonObject): DurationProperties
2663+
data class AppLaunchProperties : Vital
2664+
constructor(kotlin.String, kotlin.String? = null, kotlin.String? = null, AppLaunchMetric, kotlin.Number, StartupType? = null, kotlin.Boolean? = null, kotlin.Boolean? = null)
2665+
val type: kotlin.String
2666+
override fun toJson(): com.google.gson.JsonElement
2667+
companion object
2668+
fun fromJson(kotlin.String): AppLaunchProperties
2669+
fun fromJsonObject(com.google.gson.JsonObject): AppLaunchProperties
2670+
data class FeatureOperationProperties : Vital
2671+
constructor(kotlin.String, kotlin.String? = null, kotlin.String? = null, kotlin.String? = null, StepType? = null, FailureReason? = null)
2672+
val type: kotlin.String
2673+
override fun toJson(): com.google.gson.JsonElement
2674+
companion object
2675+
fun fromJson(kotlin.String): FeatureOperationProperties
2676+
fun fromJsonObject(com.google.gson.JsonObject): FeatureOperationProperties
2677+
companion object
2678+
fun fromJson(kotlin.String): Vital
2679+
fun fromJsonObject(com.google.gson.JsonObject): Vital
2680+
data class Cellular
2681+
constructor(kotlin.String? = null, kotlin.String? = null)
2682+
fun toJson(): com.google.gson.JsonElement
2683+
companion object
2684+
fun fromJson(kotlin.String): Cellular
2685+
fun fromJsonObject(com.google.gson.JsonObject): Cellular
2686+
data class Viewport
2687+
constructor(kotlin.Number, kotlin.Number)
2688+
fun toJson(): com.google.gson.JsonElement
2689+
companion object
2690+
fun fromJson(kotlin.String): Viewport
2691+
fun fromJsonObject(com.google.gson.JsonObject): Viewport
2692+
data class DdSession
2693+
constructor(Plan? = null, SessionPrecondition? = null)
2694+
fun toJson(): com.google.gson.JsonElement
2695+
companion object
2696+
fun fromJson(kotlin.String): DdSession
2697+
fun fromJsonObject(com.google.gson.JsonObject): DdSession
2698+
data class Configuration
2699+
constructor(kotlin.Number, kotlin.Number? = null, kotlin.Number? = null)
2700+
fun toJson(): com.google.gson.JsonElement
2701+
companion object
2702+
fun fromJson(kotlin.String): Configuration
2703+
fun fromJsonObject(com.google.gson.JsonObject): Configuration
2704+
data class Vital1
2705+
constructor(kotlin.Boolean? = null)
2706+
fun toJson(): com.google.gson.JsonElement
2707+
companion object
2708+
fun fromJson(kotlin.String): Vital1
2709+
fun fromJsonObject(com.google.gson.JsonObject): Vital1
2710+
data class Profiling
2711+
constructor(ProfilingStatus? = null, ErrorReason? = null)
2712+
fun toJson(): com.google.gson.JsonElement
2713+
companion object
2714+
fun fromJson(kotlin.String): Profiling
2715+
fun fromJsonObject(com.google.gson.JsonObject): Profiling
2716+
data class ContainerView
2717+
constructor(kotlin.String)
2718+
fun toJson(): com.google.gson.JsonElement
2719+
companion object
2720+
fun fromJson(kotlin.String): ContainerView
2721+
fun fromJsonObject(com.google.gson.JsonObject): ContainerView
2722+
enum VitalEventSource
2723+
constructor(kotlin.String)
2724+
- ANDROID
2725+
- IOS
2726+
- BROWSER
2727+
- FLUTTER
2728+
- REACT_NATIVE
2729+
- ROKU
2730+
- UNITY
2731+
- KOTLIN_MULTIPLATFORM
2732+
fun toJson(): com.google.gson.JsonElement
2733+
companion object
2734+
fun fromJson(kotlin.String): VitalEventSource
2735+
enum VitalEventSessionType
2736+
constructor(kotlin.String)
2737+
- USER
2738+
- SYNTHETICS
2739+
- CI_TEST
2740+
fun toJson(): com.google.gson.JsonElement
2741+
companion object
2742+
fun fromJson(kotlin.String): VitalEventSessionType
2743+
enum ConnectivityStatus
2744+
constructor(kotlin.String)
2745+
- CONNECTED
2746+
- NOT_CONNECTED
2747+
- MAYBE
2748+
fun toJson(): com.google.gson.JsonElement
2749+
companion object
2750+
fun fromJson(kotlin.String): ConnectivityStatus
2751+
enum Interface
2752+
constructor(kotlin.String)
2753+
- BLUETOOTH
2754+
- CELLULAR
2755+
- ETHERNET
2756+
- WIFI
2757+
- WIMAX
2758+
- MIXED
2759+
- OTHER
2760+
- UNKNOWN
2761+
- NONE
2762+
fun toJson(): com.google.gson.JsonElement
2763+
companion object
2764+
fun fromJson(kotlin.String): Interface
2765+
enum EffectiveType
2766+
constructor(kotlin.String)
2767+
- SLOW_2G
2768+
- `2G`
2769+
- `3G`
2770+
- `4G`
2771+
fun toJson(): com.google.gson.JsonElement
2772+
companion object
2773+
fun fromJson(kotlin.String): EffectiveType
2774+
enum DeviceType
2775+
constructor(kotlin.String)
2776+
- MOBILE
2777+
- DESKTOP
2778+
- TABLET
2779+
- TV
2780+
- GAMING_CONSOLE
2781+
- BOT
2782+
- OTHER
2783+
fun toJson(): com.google.gson.JsonElement
2784+
companion object
2785+
fun fromJson(kotlin.String): DeviceType
2786+
enum AppLaunchMetric
2787+
constructor(kotlin.String)
2788+
- TTID
2789+
- TTFD
2790+
fun toJson(): com.google.gson.JsonElement
2791+
companion object
2792+
fun fromJson(kotlin.String): AppLaunchMetric
2793+
enum StartupType
2794+
constructor(kotlin.String)
2795+
- COLD_START
2796+
- WARM_START
2797+
fun toJson(): com.google.gson.JsonElement
2798+
companion object
2799+
fun fromJson(kotlin.String): StartupType
2800+
enum StepType
2801+
constructor(kotlin.String)
2802+
- START
2803+
- UPDATE
2804+
- RETRY
2805+
- END
2806+
fun toJson(): com.google.gson.JsonElement
2807+
companion object
2808+
fun fromJson(kotlin.String): StepType
2809+
enum FailureReason
2810+
constructor(kotlin.String)
2811+
- ERROR
2812+
- ABANDONED
2813+
- OTHER
2814+
fun toJson(): com.google.gson.JsonElement
2815+
companion object
2816+
fun fromJson(kotlin.String): FailureReason
2817+
enum Plan
2818+
constructor(kotlin.Number)
2819+
- PLAN_1
2820+
- PLAN_2
2821+
fun toJson(): com.google.gson.JsonElement
2822+
companion object
2823+
fun fromJson(kotlin.String): Plan
2824+
enum SessionPrecondition
2825+
constructor(kotlin.String)
2826+
- USER_APP_LAUNCH
2827+
- INACTIVITY_TIMEOUT
2828+
- MAX_DURATION
2829+
- BACKGROUND_LAUNCH
2830+
- PREWARM
2831+
- FROM_NON_INTERACTIVE_SESSION
2832+
- EXPLICIT_STOP
2833+
fun toJson(): com.google.gson.JsonElement
2834+
companion object
2835+
fun fromJson(kotlin.String): SessionPrecondition
2836+
enum ProfilingStatus
2837+
constructor(kotlin.String)
2838+
- STARTING
2839+
- RUNNING
2840+
- STOPPED
2841+
- ERROR
2842+
fun toJson(): com.google.gson.JsonElement
2843+
companion object
2844+
fun fromJson(kotlin.String): ProfilingStatus
2845+
enum ErrorReason
2846+
constructor(kotlin.String)
2847+
- NOT_SUPPORTED_BY_BROWSER
2848+
- FAILED_TO_LAZY_LOAD
2849+
- MISSING_DOCUMENT_POLICY_HEADER
2850+
- UNEXPECTED_EXCEPTION
2851+
fun toJson(): com.google.gson.JsonElement
2852+
companion object
2853+
fun fromJson(kotlin.String): ErrorReason
25102854
data class com.datadog.android.telemetry.model.TelemetryConfigurationEvent
25112855
constructor(Dd, kotlin.Long, kotlin.String, Source, kotlin.String, Application? = null, Session? = null, View? = null, Action? = null, kotlin.Number? = null, kotlin.collections.List<kotlin.String>? = null, Telemetry)
25122856
val type: kotlin.String

0 commit comments

Comments
 (0)