diff --git a/android/CLAUDE.md b/android/CLAUDE.md
index 7e431b28..b6b65bb4 100644
--- a/android/CLAUDE.md
+++ b/android/CLAUDE.md
@@ -4,7 +4,7 @@ Guidance for Claude Code when working in this repository.
## Project overview
-Shopify Checkout Kit for Android is a published AAR library (`com.shopify:checkout-sheet-kit`) that presents Shopify checkouts as a native, dialog-hosted WebView in consumer apps. It is consumed by third-party Android apps via Maven Central, so changes to the library's public surface have real consumer impact and real reversal cost once released.
+Shopify Checkout Kit for Android is a published AAR library (`com.shopify:checkout-kit`) that presents Shopify checkouts as a native, dialog-hosted WebView in consumer apps. It is consumed by third-party Android apps via Maven Central, so changes to the library's public surface have real consumer impact and real reversal cost once released.
Two modules matter:
@@ -15,13 +15,13 @@ The sample is a separate Gradle composite (`samples/MobileBuyIntegration/setting
## Where to make changes
-- Library source: `lib/src/main/java/com/shopify/checkoutsheetkit/`. Flat package at the top level with a few subpackages (`errorevents/`, `lifecycleevents/`, `pixelevents/`).
-- Library tests: `lib/src/test/java/com/shopify/checkoutsheetkit/`. "No test, no merge" is a listed reject criterion in `.github/CONTRIBUTING.md`.
-- Java interop is a first-class concern — the library is commonly consumed from Java code. `lib/src/test/java/com/shopify/checkoutsheetkit/InteropTest.java` exercises the public API from Java specifically; treat breakage there as a consumer-facing issue.
+- Library source: `lib/src/main/java/com/shopify/checkoutkit/`. Flat package at the top level with a few subpackages (`errorevents/`, `lifecycleevents/`, `pixelevents/`).
+- Library tests: `lib/src/test/java/com/shopify/checkoutkit/`. "No test, no merge" is a listed reject criterion in `.github/CONTRIBUTING.md`.
+- Java interop is a first-class concern — the library is commonly consumed from Java code. `lib/src/test/java/com/shopify/checkoutkit/InteropTest.java` exercises the public API from Java specifically; treat breakage there as a consumer-facing issue.
## Key components
-- **`ShopifyCheckoutSheetKit.kt`** — the public singleton. Entry point for all consumer interactions (configure, preload, present).
+- **`ShopifyCheckoutKit.kt`** — the public singleton. Entry point for all consumer interactions (configure, preload, present).
- **`CheckoutDialog.kt`** — the dialog that hosts the WebView, including the progress indicator and error-recovery coordination.
- **`CheckoutWebView.kt`** — primary WebView. Holds the URL-keyed cache with a **5-minute preload TTL**; instruments page loads; routes bridge messages.
- **`BaseWebView.kt`** — abstract base class. Any new WebView variant must extend this so shared configuration (JS interface name, user agent suffix, client handling) is consistent.
@@ -82,7 +82,7 @@ Raising any of these is a consumer-facing breaking change and needs visible rele
Versions are bumped via:
-1. The fallback value in `lib/build.gradle` for the `CHECKOUT_SHEET_KIT_VERSION` env var.
+1. The fallback value in `lib/build.gradle` for the `CHECKOUT_KIT_VERSION` env var.
2. The install snippets in `README.md` (Gradle and Maven).
Publishing goes through GitHub Releases → `.github/workflows/publish.yml` → manual approval gate before Maven Central deploy. Full procedure: `.github/CONTRIBUTING.md` "Releasing a new version".
diff --git a/android/README.md b/android/README.md
index f5c0d28c..92891fb3 100644
--- a/android/README.md
+++ b/android/README.md
@@ -1,14 +1,14 @@
# Shopify Checkout Kit - Android
[](/LICENSE)
-
-[]()
+
+[]()
**Shopify's Checkout Kit for Android** is a library that enables Android apps to provide the world's highest converting, customizable, one-page checkout within an app. The presented experience is a fully-featured checkout that preserves all of the store customizations: Checkout UI extensions, Functions, Web Pixels, and more. It also provides idiomatic defaults such as support for light and dark mode, and convenient developer APIs to embed, customize and follow the lifecycle of the checkout experience. Check out our developer blog to [learn how Checkout Kit is built](https://www.shopify.com/partners/blog/mobile-checkout-sdks-for-ios-and-android).
-**Note**: We're in the process of renaming "Checkout Sheet Kit" to "Checkout Kit." The dev docs and README already use the new name, while the package itself will be updated in an upcoming version.
+**Note**: This library was previously published as `com.shopify:checkout-sheet-kit`. It has been renamed to `com.shopify:checkout-kit`. Update your Gradle/Maven dependency if upgrading from an older version.
- [Requirements](#requirements)
- [Getting Started](#getting-started)
@@ -48,14 +48,14 @@
## Getting Started
-The SDK is an [open source Android library](https://central.sonatype.com/artifact/com.shopify/checkout-sheet-kit). As a quick start, see
+The SDK is an [open source Android library](https://central.sonatype.com/artifact/com.shopify/checkout-kit). As a quick start, see
[sample projects](samples/README.md) or use one of the following ways to integrate the SDK into
your project:
### Gradle
```groovy
-implementation "com.shopify:checkout-sheet-kit:3.6.0"
+implementation "com.shopify:checkout-kit:3.6.0"
```
### Maven
@@ -64,7 +64,7 @@ implementation "com.shopify:checkout-sheet-kit:3.6.0"
com.shopify
- checkout-sheet-kit
+ checkout-kit
3.6.0
```
@@ -74,7 +74,7 @@ implementation "com.shopify:checkout-sheet-kit:3.6.0"
Once the SDK has been added as a dependency, you can import the library:
```kotlin
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit
+import com.shopify.checkoutkit.ShopifyCheckoutKit
```
To present a checkout to the buyer, your application must first obtain a checkout URL.
@@ -114,7 +114,7 @@ function provided by the SDK:
```kotlin
fun presentCheckout() {
val checkoutUrl = cart.checkoutUrl
- ShopifyCheckoutSheetKit.present(checkoutUrl, context, checkoutEventProcessor)
+ ShopifyCheckoutKit.present(checkoutUrl, context, checkoutEventProcessor)
}
```
@@ -125,7 +125,7 @@ fun presentCheckout() {
## Configuration
The SDK provides a way to customize the presented checkout experience via
-the `ShopifyCheckoutSheetKit.configure` function.
+the `ShopifyCheckoutKit.configure` function.
### Color Scheme
@@ -133,7 +133,7 @@ By default, the SDK will match the user's device color appearance. This behavior
via the `colorScheme` property:
```kotlin
-ShopifyCheckoutSheetKit.configure {
+ShopifyCheckoutKit.configure {
// [Default] Automatically toggle idiomatic light and dark themes based on device preference.
it.colorScheme = ColorScheme.Automatic()
@@ -183,7 +183,7 @@ val automatic = ColorScheme.Automatic(
The close icon in the checkout dialog header can be customized using the `customize` method for an ergonomic API:
```kotlin
-ShopifyCheckoutSheetKit.configure {
+ShopifyCheckoutKit.configure {
it.colorScheme = ColorScheme.Light().customize {
// Option 1: Just tint the default close icon
closeIconTint = Color.ResourceId(R.color.my_custom_tint_color)
@@ -197,7 +197,7 @@ ShopifyCheckoutSheetKit.configure {
For automatic theme switching, you can provide different customizations for light and dark modes:
```kotlin
-ShopifyCheckoutSheetKit.configure {
+ShopifyCheckoutKit.configure {
it.colorScheme = ColorScheme.Automatic().customize(
light = {
closeIconTint = Color.ResourceId(R.color.light_tint)
@@ -221,14 +221,14 @@ The colors that can be modified are:
- closeIcon - Used to provide a completely custom close icon drawable
- closeIconTint - Used to tint the default close icon with a custom color
-The current configuration can be obtained by calling `ShopifyCheckoutSheetKit.getConfiguration()`.
+The current configuration can be obtained by calling `ShopifyCheckoutKit.getConfiguration()`.
### Log Level
Enable additional debug logs via the `logLevel` configuration option.
```kotlin
-ShopifyCheckoutSheetKit.configure {
+ShopifyCheckoutKit.configure {
it.logLevel = LogLevel.DEBUG
}
```
@@ -252,7 +252,7 @@ initialized in the background, ahead of time.
Preloading is an advanced feature that can be disabled via a runtime flag:
```kotlin
-ShopifyCheckoutSheetKit.configure {
+ShopifyCheckoutKit.configure {
it.preloading = Preloading(enabled = false) // defaults to true
}
```
@@ -261,16 +261,16 @@ Once enabled, preloading a checkout is as simple as calling
`preload(checkoutUrl)` with a valid `checkoutUrl`.
```kotlin
-ShopifyCheckoutSheetKit.preload(checkoutUrl)
+ShopifyCheckoutKit.preload(checkoutUrl)
```
Setting enabled to `false` will cause all calls to the `preload` function to be ignored. This allows the application to selectively toggle preloading behavior as a remote feature flag or dynamically in response to client conditions - e.g. when data saver functionality is enabled by the user.
```kotlin
-ShopifyCheckoutSheetKit.configure {
+ShopifyCheckoutKit.configure {
it.preloading = Preloading(enabled = false)
}
-ShopifyCheckoutSheetKit.preload(checkoutUrl) // no-op
+ShopifyCheckoutKit.preload(checkoutUrl) // no-op
```
### Important considerations
@@ -303,13 +303,13 @@ Instead, a better approach is to call `preload()` when you have a strong enough
### Cache invalidation
-Should you wish to manually clear the preload cache, there is a `ShopifyCheckoutSheetKit.invalidate()` helper function to do so. This function will be a no-op if no checkout is preloaded.
+Should you wish to manually clear the preload cache, there is a `ShopifyCheckoutKit.invalidate()` helper function to do so. This function will be a no-op if no checkout is preloaded.
You may wish to do this if the buyer changes shortly before entering checkout, e.g. by changing cart quantity on a cart view.
### Lifecycle management for preloaded checkout
-Preloading renders a checkout in a background webview, which is brought to foreground when `ShopifyCheckoutSheetKit.present()` is called. The content of preloaded checkout reflects the state of the cart when `preload()` was initially called. If the cart is mutated after `preload()` is called, the application is responsible for invalidating the preloaded checkout to ensure that up-to-date checkout content is displayed to the buyer:
+Preloading renders a checkout in a background webview, which is brought to foreground when `ShopifyCheckoutKit.present()` is called. The content of preloaded checkout reflects the state of the cart when `preload()` was initially called. If the cart is mutated after `preload()` is called, the application is responsible for invalidating the preloaded checkout to ensure that up-to-date checkout content is displayed to the buyer:
1. To update preloaded contents: call `preload()` once again
2. To disable preloaded content: toggle the preload configuration setting
@@ -421,7 +421,7 @@ Should you wish to opt-out of this fallback experience entirely, you can do so b
`preRecoveryActions()` can also be overridden to execute code before a fallback takes place, for example to add logging, or clear up any potentially problematic state such as in cookies. By default this function is a no-op.
```kotlin
-ShopifyCheckoutSheetKit.configure {
+ShopifyCheckoutKit.configure {
it.errorRecovery = object: ErrorRecovery {
override fun shouldRecoverFromError(checkoutException: CheckoutException): Boolean {
// To disable recovery (default = checkoutException.isRecoverable)
@@ -447,10 +447,10 @@ ShopifyCheckoutSheetKit.configure {
| `CheckoutExpiredException` | 'cart_expired' | The cart or checkout is no longer available. | Create a new cart and open a new checkout URL. |
| `CheckoutExpiredException` | 'cart_completed' | The cart associated with the checkout has completed checkout. | Create new cart and open a new checkout URL. |
| `CheckoutExpiredException` | 'invalid_cart' | The cart associated with the checkout is invalid (e.g. empty). | Create a new cart and open a new checkout URL. |
-| `CheckoutSheetKitException` | 'error_receiving_message' | Checkout Kit failed to receive a message from checkout. | Show checkout in a fallback WebView. |
-| `CheckoutSheetKitException` | 'error_sending_message' | Checkout Kit failed to send a message to checkout. | Show checkout in a fallback WebView. |
-| `CheckoutSheetKitException` | 'render_process_gone' | The render process for the checkout WebView is gone. | Show checkout in a fallback WebView. |
-| `CheckoutSheetKitException` | 'unknown' | An error in Checkout Kit has occurred, see error details for more info. | Show checkout in a fallback WebView. |
+| `CheckoutKitException` | 'error_receiving_message' | Checkout Kit failed to receive a message from checkout. | Show checkout in a fallback WebView. |
+| `CheckoutKitException` | 'error_sending_message' | Checkout Kit failed to send a message to checkout. | Show checkout in a fallback WebView. |
+| `CheckoutKitException` | 'render_process_gone' | The render process for the checkout WebView is gone. | Show checkout in a fallback WebView. |
+| `CheckoutKitException` | 'unknown' | An error in Checkout Kit has occurred, see error details for more info. | Show checkout in a fallback WebView. |
| `HttpException` | 'http_error' | An unexpected server error has been encountered. | Show checkout in a fallback WebView. |
| `ClientException` | 'client_error' | An unhandled client error was encountered. | Show checkout in a fallback WebView. |
| `CheckoutUnavailableException` | 'unknown' | Checkout is unavailable for another reason, see error details for more info. | Show checkout in a fallback WebView. |
@@ -464,7 +464,7 @@ title: Checkout Kit Exception Hierarchy
classDiagram
CheckoutException <|-- ConfigurationException
CheckoutException <|-- CheckoutExpiredException
- CheckoutException <|-- CheckoutSheetKitException
+ CheckoutException <|-- CheckoutKitException
CheckoutException <|-- CheckoutUnavailableException
CheckoutUnavailableException <|-- HttpException
CheckoutUnavailableException <|-- ClientException
@@ -490,7 +490,7 @@ classDiagram
class ClientException{
note: "Unexpected client/web error"
}
- class CheckoutSheetKitException{
+ class CheckoutKitException{
note: "Error in Checkout Kit code"
}
```
@@ -574,7 +574,7 @@ and initialize a buyer-aware checkout session.
1. Follow the [Multipass documentation](https://shopify.dev/docs/api/multipass) to create a
multipass
URL and set the `'return_to'` to be the obtained `checkoutUrl`
-2. Provide the Multipass URL to `ShopifyCheckoutSheetKit.present()`.
+2. Provide the Multipass URL to `ShopifyCheckoutKit.present()`.
> [!Important]
> the above JSON omits useful customer attributes that should be provided where possible and
@@ -595,7 +595,7 @@ checkout sessions.
### Customer Account API
The Customer Account API allows you to authenticate buyers and provide a personalized checkout experience.
-For detailed implementation instructions, see our [Customer Account API Authentication Guide](https://shopify.dev/docs/storefronts/headless/mobile-apps/checkout-sheet-kit/authenticate-checkouts).
+For detailed implementation instructions, see our [Customer Account API Authentication Guide](https://shopify.dev/docs/storefronts/headless/mobile-apps/checkout-kit/authenticate-checkouts).
---
diff --git a/android/checkout-sheet-kit.png b/android/checkout-kit.png
similarity index 100%
rename from android/checkout-sheet-kit.png
rename to android/checkout-kit.png
diff --git a/android/dev.yml b/android/dev.yml
index 3e920d17..d7232daf 100644
--- a/android/dev.yml
+++ b/android/dev.yml
@@ -1,4 +1,4 @@
-name: checkout-sheet-kit-android
+name: checkout-kit-android
type: android
@@ -64,6 +64,6 @@ check:
android-lint: ./gradlew lintRelease
open:
- "GitHub": "https://github.com/Shopify/checkout-sheet-kit-android"
- "Issues": "https://github.com/Shopify/checkout-sheet-kit-android/issues"
- "PRs": "https://github.com/Shopify/checkout-sheet-kit-android/pulls"
+ "GitHub": "https://github.com/Shopify/checkout-kit"
+ "Issues": "https://github.com/Shopify/checkout-kit/issues"
+ "PRs": "https://github.com/Shopify/checkout-kit/pulls"
diff --git a/android/lib/api/lib.api b/android/lib/api/lib.api
index ceb8fec6..2cfd5ade 100644
--- a/android/lib/api/lib.api
+++ b/android/lib/api/lib.api
@@ -1,4 +1,4 @@
-public final class com/shopify/checkoutsheetkit/BuildConfig {
+public final class com/shopify/checkoutkit/BuildConfig {
public static final field BUILD_TYPE Ljava/lang/String;
public static final field DEBUG Z
public static final field LIBRARY_PACKAGE_NAME Ljava/lang/String;
@@ -6,36 +6,36 @@ public final class com/shopify/checkoutsheetkit/BuildConfig {
public fun ()V
}
-public abstract interface class com/shopify/checkoutsheetkit/CheckoutEventProcessor {
+public abstract interface class com/shopify/checkoutkit/CheckoutEventProcessor {
public abstract fun onCheckoutCanceled ()V
- public abstract fun onCheckoutCompleted (Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent;)V
- public abstract fun onCheckoutFailed (Lcom/shopify/checkoutsheetkit/CheckoutException;)V
+ public abstract fun onCheckoutCompleted (Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent;)V
+ public abstract fun onCheckoutFailed (Lcom/shopify/checkoutkit/CheckoutException;)V
public abstract fun onCheckoutLinkClicked (Landroid/net/Uri;)V
public abstract fun onGeolocationPermissionsHidePrompt ()V
public abstract fun onGeolocationPermissionsShowPrompt (Ljava/lang/String;Landroid/webkit/GeolocationPermissions$Callback;)V
public abstract fun onPermissionRequest (Landroid/webkit/PermissionRequest;)V
public abstract fun onShowFileChooser (Landroid/webkit/WebView;Landroid/webkit/ValueCallback;Landroid/webkit/WebChromeClient$FileChooserParams;)Z
- public abstract fun onWebPixelEvent (Lcom/shopify/checkoutsheetkit/pixelevents/PixelEvent;)V
+ public abstract fun onWebPixelEvent (Lcom/shopify/checkoutkit/pixelevents/PixelEvent;)V
}
-public abstract class com/shopify/checkoutsheetkit/CheckoutException : java/lang/Exception {
- public static final field Companion Lcom/shopify/checkoutsheetkit/CheckoutException$Companion;
+public abstract class com/shopify/checkoutkit/CheckoutException : java/lang/Exception {
+ public static final field Companion Lcom/shopify/checkoutkit/CheckoutException$Companion;
public synthetic fun (ILjava/lang/String;Ljava/lang/String;ZLkotlinx/serialization/internal/SerializationConstructorMarker;)V
public fun (Ljava/lang/String;Ljava/lang/String;Z)V
public final fun getErrorCode ()Ljava/lang/String;
public final fun getErrorDescription ()Ljava/lang/String;
public final fun isRecoverable ()Z
- public static final synthetic fun write$Self (Lcom/shopify/checkoutsheetkit/CheckoutException;Lkotlinx/serialization/encoding/CompositeEncoder;Lkotlinx/serialization/descriptors/SerialDescriptor;)V
+ public static final synthetic fun write$Self (Lcom/shopify/checkoutkit/CheckoutException;Lkotlinx/serialization/encoding/CompositeEncoder;Lkotlinx/serialization/descriptors/SerialDescriptor;)V
}
-public final class com/shopify/checkoutsheetkit/CheckoutException$Companion {
+public final class com/shopify/checkoutkit/CheckoutException$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/CheckoutExpiredException : com/shopify/checkoutsheetkit/CheckoutException {
+public final class com/shopify/checkoutkit/CheckoutExpiredException : com/shopify/checkoutkit/CheckoutException {
public static final field CART_COMPLETED Ljava/lang/String;
public static final field CART_EXPIRED Ljava/lang/String;
- public static final field Companion Lcom/shopify/checkoutsheetkit/CheckoutExpiredException$Companion;
+ public static final field Companion Lcom/shopify/checkoutkit/CheckoutExpiredException$Companion;
public static final field INVALID_CART Ljava/lang/String;
public static final field UNKNOWN Ljava/lang/String;
public fun (Ljava/lang/String;Ljava/lang/String;Z)V
@@ -44,15 +44,15 @@ public final class com/shopify/checkoutsheetkit/CheckoutExpiredException : com/s
public fun (Z)V
}
-public final class com/shopify/checkoutsheetkit/CheckoutExpiredException$Companion {
+public final class com/shopify/checkoutkit/CheckoutExpiredException$Companion {
}
-public abstract interface class com/shopify/checkoutsheetkit/CheckoutSheetKitDialog {
+public abstract interface class com/shopify/checkoutkit/CheckoutKitDialog {
public abstract fun dismiss ()V
}
-public final class com/shopify/checkoutsheetkit/CheckoutSheetKitException : com/shopify/checkoutsheetkit/CheckoutException {
- public static final field Companion Lcom/shopify/checkoutsheetkit/CheckoutSheetKitException$Companion;
+public final class com/shopify/checkoutkit/CheckoutKitException : com/shopify/checkoutkit/CheckoutException {
+ public static final field Companion Lcom/shopify/checkoutkit/CheckoutKitException$Companion;
public static final field ERROR_RECEIVING_MESSAGE_FROM_CHECKOUT Ljava/lang/String;
public static final field ERROR_SENDING_MESSAGE_TO_CHECKOUT Ljava/lang/String;
public static final field RENDER_PROCESS_GONE Ljava/lang/String;
@@ -61,12 +61,12 @@ public final class com/shopify/checkoutsheetkit/CheckoutSheetKitException : com/
public synthetic fun (Ljava/lang/String;Ljava/lang/String;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
}
-public final class com/shopify/checkoutsheetkit/CheckoutSheetKitException$Companion {
+public final class com/shopify/checkoutkit/CheckoutKitException$Companion {
}
-public class com/shopify/checkoutsheetkit/CheckoutUnavailableException : com/shopify/checkoutsheetkit/CheckoutException {
+public class com/shopify/checkoutkit/CheckoutUnavailableException : com/shopify/checkoutkit/CheckoutException {
public static final field CLIENT_ERROR Ljava/lang/String;
- public static final field Companion Lcom/shopify/checkoutsheetkit/CheckoutUnavailableException$Companion;
+ public static final field Companion Lcom/shopify/checkoutkit/CheckoutUnavailableException$Companion;
public static final field HTTP_ERROR Ljava/lang/String;
public static final field UNKNOWN Ljava/lang/String;
public fun (Ljava/lang/String;Ljava/lang/String;Z)V
@@ -75,302 +75,302 @@ public class com/shopify/checkoutsheetkit/CheckoutUnavailableException : com/sho
public fun (Z)V
}
-public final class com/shopify/checkoutsheetkit/CheckoutUnavailableException$Companion {
+public final class com/shopify/checkoutkit/CheckoutUnavailableException$Companion {
}
-public final class com/shopify/checkoutsheetkit/ClientException : com/shopify/checkoutsheetkit/CheckoutUnavailableException {
+public final class com/shopify/checkoutkit/ClientException : com/shopify/checkoutkit/CheckoutUnavailableException {
public fun (Ljava/lang/String;Z)V
public synthetic fun (Ljava/lang/String;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun (Z)V
}
-public abstract class com/shopify/checkoutsheetkit/Color {
- public static final field Companion Lcom/shopify/checkoutsheetkit/Color$Companion;
+public abstract class com/shopify/checkoutkit/Color {
+ public static final field Companion Lcom/shopify/checkoutkit/Color$Companion;
public synthetic fun (ILkotlinx/serialization/internal/SerializationConstructorMarker;)V
public final fun getValue (Landroid/content/Context;)I
- public static final synthetic fun write$Self (Lcom/shopify/checkoutsheetkit/Color;Lkotlinx/serialization/encoding/CompositeEncoder;Lkotlinx/serialization/descriptors/SerialDescriptor;)V
+ public static final synthetic fun write$Self (Lcom/shopify/checkoutkit/Color;Lkotlinx/serialization/encoding/CompositeEncoder;Lkotlinx/serialization/descriptors/SerialDescriptor;)V
}
-public final class com/shopify/checkoutsheetkit/Color$Companion {
+public final class com/shopify/checkoutkit/Color$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/Color$ResourceId : com/shopify/checkoutsheetkit/Color {
- public static final field Companion Lcom/shopify/checkoutsheetkit/Color$ResourceId$Companion;
+public final class com/shopify/checkoutkit/Color$ResourceId : com/shopify/checkoutkit/Color {
+ public static final field Companion Lcom/shopify/checkoutkit/Color$ResourceId$Companion;
public fun (I)V
public final fun component1 ()I
- public final fun copy (I)Lcom/shopify/checkoutsheetkit/Color$ResourceId;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/Color$ResourceId;IILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/Color$ResourceId;
+ public final fun copy (I)Lcom/shopify/checkoutkit/Color$ResourceId;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/Color$ResourceId;IILjava/lang/Object;)Lcom/shopify/checkoutkit/Color$ResourceId;
public fun equals (Ljava/lang/Object;)Z
public final fun getId ()I
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/Color$ResourceId$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/Color$ResourceId$$serializer;
+public final class com/shopify/checkoutkit/Color$ResourceId$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/Color$ResourceId$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/Color$ResourceId;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/Color$ResourceId;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/Color$ResourceId;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/Color$ResourceId;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/Color$ResourceId$Companion {
+public final class com/shopify/checkoutkit/Color$ResourceId$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/Color$SRGB : com/shopify/checkoutsheetkit/Color {
- public static final field Companion Lcom/shopify/checkoutsheetkit/Color$SRGB$Companion;
+public final class com/shopify/checkoutkit/Color$SRGB : com/shopify/checkoutkit/Color {
+ public static final field Companion Lcom/shopify/checkoutkit/Color$SRGB$Companion;
public fun (I)V
public final fun component1 ()I
- public final fun copy (I)Lcom/shopify/checkoutsheetkit/Color$SRGB;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/Color$SRGB;IILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/Color$SRGB;
+ public final fun copy (I)Lcom/shopify/checkoutkit/Color$SRGB;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/Color$SRGB;IILjava/lang/Object;)Lcom/shopify/checkoutkit/Color$SRGB;
public fun equals (Ljava/lang/Object;)Z
public final fun getSRGB ()I
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/Color$SRGB$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/Color$SRGB$$serializer;
+public final class com/shopify/checkoutkit/Color$SRGB$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/Color$SRGB$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/Color$SRGB;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/Color$SRGB;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/Color$SRGB;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/Color$SRGB;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/Color$SRGB$Companion {
+public final class com/shopify/checkoutkit/Color$SRGB$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public abstract class com/shopify/checkoutsheetkit/ColorScheme {
- public static final field Companion Lcom/shopify/checkoutsheetkit/ColorScheme$Companion;
+public abstract class com/shopify/checkoutkit/ColorScheme {
+ public static final field Companion Lcom/shopify/checkoutkit/ColorScheme$Companion;
public synthetic fun (ILjava/lang/String;Lkotlinx/serialization/internal/SerializationConstructorMarker;)V
public synthetic fun (Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun customize (Lkotlin/jvm/functions/Function1;)Lcom/shopify/checkoutsheetkit/ColorScheme;
- public final fun customize (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)Lcom/shopify/checkoutsheetkit/ColorScheme;
+ public final fun customize (Lkotlin/jvm/functions/Function1;)Lcom/shopify/checkoutkit/ColorScheme;
+ public final fun customize (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)Lcom/shopify/checkoutkit/ColorScheme;
public final fun getId ()Ljava/lang/String;
- public static final synthetic fun write$Self (Lcom/shopify/checkoutsheetkit/ColorScheme;Lkotlinx/serialization/encoding/CompositeEncoder;Lkotlinx/serialization/descriptors/SerialDescriptor;)V
+ public static final synthetic fun write$Self (Lcom/shopify/checkoutkit/ColorScheme;Lkotlinx/serialization/encoding/CompositeEncoder;Lkotlinx/serialization/descriptors/SerialDescriptor;)V
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Automatic : com/shopify/checkoutsheetkit/ColorScheme {
- public static final field Companion Lcom/shopify/checkoutsheetkit/ColorScheme$Automatic$Companion;
+public final class com/shopify/checkoutkit/ColorScheme$Automatic : com/shopify/checkoutkit/ColorScheme {
+ public static final field Companion Lcom/shopify/checkoutkit/ColorScheme$Automatic$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/Colors;Lcom/shopify/checkoutsheetkit/Colors;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/Colors;Lcom/shopify/checkoutsheetkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/Colors;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/Colors;
- public final fun copy (Lcom/shopify/checkoutsheetkit/Colors;Lcom/shopify/checkoutsheetkit/Colors;)Lcom/shopify/checkoutsheetkit/ColorScheme$Automatic;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/ColorScheme$Automatic;Lcom/shopify/checkoutsheetkit/Colors;Lcom/shopify/checkoutsheetkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/ColorScheme$Automatic;
+ public fun (Lcom/shopify/checkoutkit/Colors;Lcom/shopify/checkoutkit/Colors;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/Colors;Lcom/shopify/checkoutkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/Colors;
+ public final fun component2 ()Lcom/shopify/checkoutkit/Colors;
+ public final fun copy (Lcom/shopify/checkoutkit/Colors;Lcom/shopify/checkoutkit/Colors;)Lcom/shopify/checkoutkit/ColorScheme$Automatic;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/ColorScheme$Automatic;Lcom/shopify/checkoutkit/Colors;Lcom/shopify/checkoutkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutkit/ColorScheme$Automatic;
public fun equals (Ljava/lang/Object;)Z
- public final fun getDarkColors ()Lcom/shopify/checkoutsheetkit/Colors;
- public final fun getLightColors ()Lcom/shopify/checkoutsheetkit/Colors;
+ public final fun getDarkColors ()Lcom/shopify/checkoutkit/Colors;
+ public final fun getLightColors ()Lcom/shopify/checkoutkit/Colors;
public fun hashCode ()I
- public final fun setDarkColors (Lcom/shopify/checkoutsheetkit/Colors;)V
- public final fun setLightColors (Lcom/shopify/checkoutsheetkit/Colors;)V
+ public final fun setDarkColors (Lcom/shopify/checkoutkit/Colors;)V
+ public final fun setLightColors (Lcom/shopify/checkoutkit/Colors;)V
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Automatic$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/ColorScheme$Automatic$$serializer;
+public final class com/shopify/checkoutkit/ColorScheme$Automatic$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/ColorScheme$Automatic$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/ColorScheme$Automatic;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/ColorScheme$Automatic;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/ColorScheme$Automatic;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/ColorScheme$Automatic;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Automatic$Companion {
+public final class com/shopify/checkoutkit/ColorScheme$Automatic$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Companion {
+public final class com/shopify/checkoutkit/ColorScheme$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Dark : com/shopify/checkoutsheetkit/ColorScheme {
- public static final field Companion Lcom/shopify/checkoutsheetkit/ColorScheme$Dark$Companion;
+public final class com/shopify/checkoutkit/ColorScheme$Dark : com/shopify/checkoutkit/ColorScheme {
+ public static final field Companion Lcom/shopify/checkoutkit/ColorScheme$Dark$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/Colors;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/Colors;
- public final fun copy (Lcom/shopify/checkoutsheetkit/Colors;)Lcom/shopify/checkoutsheetkit/ColorScheme$Dark;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/ColorScheme$Dark;Lcom/shopify/checkoutsheetkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/ColorScheme$Dark;
+ public fun (Lcom/shopify/checkoutkit/Colors;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/Colors;
+ public final fun copy (Lcom/shopify/checkoutkit/Colors;)Lcom/shopify/checkoutkit/ColorScheme$Dark;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/ColorScheme$Dark;Lcom/shopify/checkoutkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutkit/ColorScheme$Dark;
public fun equals (Ljava/lang/Object;)Z
- public final fun getColors ()Lcom/shopify/checkoutsheetkit/Colors;
+ public final fun getColors ()Lcom/shopify/checkoutkit/Colors;
public fun hashCode ()I
- public final fun setColors (Lcom/shopify/checkoutsheetkit/Colors;)V
+ public final fun setColors (Lcom/shopify/checkoutkit/Colors;)V
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Dark$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/ColorScheme$Dark$$serializer;
+public final class com/shopify/checkoutkit/ColorScheme$Dark$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/ColorScheme$Dark$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/ColorScheme$Dark;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/ColorScheme$Dark;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/ColorScheme$Dark;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/ColorScheme$Dark;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Dark$Companion {
+public final class com/shopify/checkoutkit/ColorScheme$Dark$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Light : com/shopify/checkoutsheetkit/ColorScheme {
- public static final field Companion Lcom/shopify/checkoutsheetkit/ColorScheme$Light$Companion;
+public final class com/shopify/checkoutkit/ColorScheme$Light : com/shopify/checkoutkit/ColorScheme {
+ public static final field Companion Lcom/shopify/checkoutkit/ColorScheme$Light$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/Colors;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/Colors;
- public final fun copy (Lcom/shopify/checkoutsheetkit/Colors;)Lcom/shopify/checkoutsheetkit/ColorScheme$Light;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/ColorScheme$Light;Lcom/shopify/checkoutsheetkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/ColorScheme$Light;
+ public fun (Lcom/shopify/checkoutkit/Colors;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/Colors;
+ public final fun copy (Lcom/shopify/checkoutkit/Colors;)Lcom/shopify/checkoutkit/ColorScheme$Light;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/ColorScheme$Light;Lcom/shopify/checkoutkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutkit/ColorScheme$Light;
public fun equals (Ljava/lang/Object;)Z
- public final fun getColors ()Lcom/shopify/checkoutsheetkit/Colors;
+ public final fun getColors ()Lcom/shopify/checkoutkit/Colors;
public fun hashCode ()I
- public final fun setColors (Lcom/shopify/checkoutsheetkit/Colors;)V
+ public final fun setColors (Lcom/shopify/checkoutkit/Colors;)V
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Light$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/ColorScheme$Light$$serializer;
+public final class com/shopify/checkoutkit/ColorScheme$Light$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/ColorScheme$Light$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/ColorScheme$Light;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/ColorScheme$Light;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/ColorScheme$Light;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/ColorScheme$Light;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Light$Companion {
+public final class com/shopify/checkoutkit/ColorScheme$Light$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Web : com/shopify/checkoutsheetkit/ColorScheme {
- public static final field Companion Lcom/shopify/checkoutsheetkit/ColorScheme$Web$Companion;
+public final class com/shopify/checkoutkit/ColorScheme$Web : com/shopify/checkoutkit/ColorScheme {
+ public static final field Companion Lcom/shopify/checkoutkit/ColorScheme$Web$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/Colors;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/Colors;
- public final fun copy (Lcom/shopify/checkoutsheetkit/Colors;)Lcom/shopify/checkoutsheetkit/ColorScheme$Web;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/ColorScheme$Web;Lcom/shopify/checkoutsheetkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/ColorScheme$Web;
+ public fun (Lcom/shopify/checkoutkit/Colors;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/Colors;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/Colors;
+ public final fun copy (Lcom/shopify/checkoutkit/Colors;)Lcom/shopify/checkoutkit/ColorScheme$Web;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/ColorScheme$Web;Lcom/shopify/checkoutkit/Colors;ILjava/lang/Object;)Lcom/shopify/checkoutkit/ColorScheme$Web;
public fun equals (Ljava/lang/Object;)Z
- public final fun getColors ()Lcom/shopify/checkoutsheetkit/Colors;
+ public final fun getColors ()Lcom/shopify/checkoutkit/Colors;
public fun hashCode ()I
- public final fun setColors (Lcom/shopify/checkoutsheetkit/Colors;)V
+ public final fun setColors (Lcom/shopify/checkoutkit/Colors;)V
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Web$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/ColorScheme$Web$$serializer;
+public final class com/shopify/checkoutkit/ColorScheme$Web$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/ColorScheme$Web$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/ColorScheme$Web;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/ColorScheme$Web;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/ColorScheme$Web;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/ColorScheme$Web;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorScheme$Web$Companion {
+public final class com/shopify/checkoutkit/ColorScheme$Web$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/Colors {
- public static final field Companion Lcom/shopify/checkoutsheetkit/Colors$Companion;
- public fun (Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/DrawableResource;Lcom/shopify/checkoutsheetkit/Color;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/DrawableResource;Lcom/shopify/checkoutsheetkit/Color;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun component4 ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun component5 ()Lcom/shopify/checkoutsheetkit/DrawableResource;
- public final fun component6 ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun copy (Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/DrawableResource;Lcom/shopify/checkoutsheetkit/Color;)Lcom/shopify/checkoutsheetkit/Colors;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/Colors;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/Color;Lcom/shopify/checkoutsheetkit/DrawableResource;Lcom/shopify/checkoutsheetkit/Color;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/Colors;
+public final class com/shopify/checkoutkit/Colors {
+ public static final field Companion Lcom/shopify/checkoutkit/Colors$Companion;
+ public fun (Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/DrawableResource;Lcom/shopify/checkoutkit/Color;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/DrawableResource;Lcom/shopify/checkoutkit/Color;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/Color;
+ public final fun component2 ()Lcom/shopify/checkoutkit/Color;
+ public final fun component3 ()Lcom/shopify/checkoutkit/Color;
+ public final fun component4 ()Lcom/shopify/checkoutkit/Color;
+ public final fun component5 ()Lcom/shopify/checkoutkit/DrawableResource;
+ public final fun component6 ()Lcom/shopify/checkoutkit/Color;
+ public final fun copy (Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/DrawableResource;Lcom/shopify/checkoutkit/Color;)Lcom/shopify/checkoutkit/Colors;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/Colors;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/Color;Lcom/shopify/checkoutkit/DrawableResource;Lcom/shopify/checkoutkit/Color;ILjava/lang/Object;)Lcom/shopify/checkoutkit/Colors;
public fun equals (Ljava/lang/Object;)Z
- public final fun getCloseIcon ()Lcom/shopify/checkoutsheetkit/DrawableResource;
- public final fun getCloseIconTint ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getHeaderBackground ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getHeaderFont ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getProgressIndicator ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getWebViewBackground ()Lcom/shopify/checkoutsheetkit/Color;
+ public final fun getCloseIcon ()Lcom/shopify/checkoutkit/DrawableResource;
+ public final fun getCloseIconTint ()Lcom/shopify/checkoutkit/Color;
+ public final fun getHeaderBackground ()Lcom/shopify/checkoutkit/Color;
+ public final fun getHeaderFont ()Lcom/shopify/checkoutkit/Color;
+ public final fun getProgressIndicator ()Lcom/shopify/checkoutkit/Color;
+ public final fun getWebViewBackground ()Lcom/shopify/checkoutkit/Color;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/Colors$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/Colors$$serializer;
+public final class com/shopify/checkoutkit/Colors$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/Colors$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/Colors;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/Colors;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/Colors;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/Colors;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/Colors$Companion {
+public final class com/shopify/checkoutkit/Colors$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/ColorsBuilder {
- public final fun getCloseIcon ()Lcom/shopify/checkoutsheetkit/DrawableResource;
- public final fun getCloseIconTint ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getHeaderBackground ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getHeaderFont ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getProgressIndicator ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun getWebViewBackground ()Lcom/shopify/checkoutsheetkit/Color;
- public final fun setCloseIcon (Lcom/shopify/checkoutsheetkit/DrawableResource;)V
- public final fun setCloseIconTint (Lcom/shopify/checkoutsheetkit/Color;)V
- public final fun setHeaderBackground (Lcom/shopify/checkoutsheetkit/Color;)V
- public final fun setHeaderFont (Lcom/shopify/checkoutsheetkit/Color;)V
- public final fun setProgressIndicator (Lcom/shopify/checkoutsheetkit/Color;)V
- public final fun setWebViewBackground (Lcom/shopify/checkoutsheetkit/Color;)V
- public final fun withCloseIcon (Lcom/shopify/checkoutsheetkit/DrawableResource;)Lcom/shopify/checkoutsheetkit/ColorsBuilder;
- public final fun withCloseIconTint (Lcom/shopify/checkoutsheetkit/Color;)Lcom/shopify/checkoutsheetkit/ColorsBuilder;
- public final fun withHeaderBackground (Lcom/shopify/checkoutsheetkit/Color;)Lcom/shopify/checkoutsheetkit/ColorsBuilder;
- public final fun withHeaderFont (Lcom/shopify/checkoutsheetkit/Color;)Lcom/shopify/checkoutsheetkit/ColorsBuilder;
- public final fun withProgressIndicator (Lcom/shopify/checkoutsheetkit/Color;)Lcom/shopify/checkoutsheetkit/ColorsBuilder;
- public final fun withWebViewBackground (Lcom/shopify/checkoutsheetkit/Color;)Lcom/shopify/checkoutsheetkit/ColorsBuilder;
-}
-
-public final class com/shopify/checkoutsheetkit/Configuration {
+public final class com/shopify/checkoutkit/ColorsBuilder {
+ public final fun getCloseIcon ()Lcom/shopify/checkoutkit/DrawableResource;
+ public final fun getCloseIconTint ()Lcom/shopify/checkoutkit/Color;
+ public final fun getHeaderBackground ()Lcom/shopify/checkoutkit/Color;
+ public final fun getHeaderFont ()Lcom/shopify/checkoutkit/Color;
+ public final fun getProgressIndicator ()Lcom/shopify/checkoutkit/Color;
+ public final fun getWebViewBackground ()Lcom/shopify/checkoutkit/Color;
+ public final fun setCloseIcon (Lcom/shopify/checkoutkit/DrawableResource;)V
+ public final fun setCloseIconTint (Lcom/shopify/checkoutkit/Color;)V
+ public final fun setHeaderBackground (Lcom/shopify/checkoutkit/Color;)V
+ public final fun setHeaderFont (Lcom/shopify/checkoutkit/Color;)V
+ public final fun setProgressIndicator (Lcom/shopify/checkoutkit/Color;)V
+ public final fun setWebViewBackground (Lcom/shopify/checkoutkit/Color;)V
+ public final fun withCloseIcon (Lcom/shopify/checkoutkit/DrawableResource;)Lcom/shopify/checkoutkit/ColorsBuilder;
+ public final fun withCloseIconTint (Lcom/shopify/checkoutkit/Color;)Lcom/shopify/checkoutkit/ColorsBuilder;
+ public final fun withHeaderBackground (Lcom/shopify/checkoutkit/Color;)Lcom/shopify/checkoutkit/ColorsBuilder;
+ public final fun withHeaderFont (Lcom/shopify/checkoutkit/Color;)Lcom/shopify/checkoutkit/ColorsBuilder;
+ public final fun withProgressIndicator (Lcom/shopify/checkoutkit/Color;)Lcom/shopify/checkoutkit/ColorsBuilder;
+ public final fun withWebViewBackground (Lcom/shopify/checkoutkit/Color;)Lcom/shopify/checkoutkit/ColorsBuilder;
+}
+
+public final class com/shopify/checkoutkit/Configuration {
public fun ()V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/ColorScheme;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/Preloading;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/ErrorRecovery;
- public final fun component4 ()Lcom/shopify/checkoutsheetkit/Platform;
- public final fun component5 ()Lcom/shopify/checkoutsheetkit/LogLevel;
- public final fun copy (Lcom/shopify/checkoutsheetkit/ColorScheme;Lcom/shopify/checkoutsheetkit/Preloading;Lcom/shopify/checkoutsheetkit/ErrorRecovery;Lcom/shopify/checkoutsheetkit/Platform;Lcom/shopify/checkoutsheetkit/LogLevel;)Lcom/shopify/checkoutsheetkit/Configuration;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/Configuration;Lcom/shopify/checkoutsheetkit/ColorScheme;Lcom/shopify/checkoutsheetkit/Preloading;Lcom/shopify/checkoutsheetkit/ErrorRecovery;Lcom/shopify/checkoutsheetkit/Platform;Lcom/shopify/checkoutsheetkit/LogLevel;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/Configuration;
+ public final fun component1 ()Lcom/shopify/checkoutkit/ColorScheme;
+ public final fun component2 ()Lcom/shopify/checkoutkit/Preloading;
+ public final fun component3 ()Lcom/shopify/checkoutkit/ErrorRecovery;
+ public final fun component4 ()Lcom/shopify/checkoutkit/Platform;
+ public final fun component5 ()Lcom/shopify/checkoutkit/LogLevel;
+ public final fun copy (Lcom/shopify/checkoutkit/ColorScheme;Lcom/shopify/checkoutkit/Preloading;Lcom/shopify/checkoutkit/ErrorRecovery;Lcom/shopify/checkoutkit/Platform;Lcom/shopify/checkoutkit/LogLevel;)Lcom/shopify/checkoutkit/Configuration;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/Configuration;Lcom/shopify/checkoutkit/ColorScheme;Lcom/shopify/checkoutkit/Preloading;Lcom/shopify/checkoutkit/ErrorRecovery;Lcom/shopify/checkoutkit/Platform;Lcom/shopify/checkoutkit/LogLevel;ILjava/lang/Object;)Lcom/shopify/checkoutkit/Configuration;
public fun equals (Ljava/lang/Object;)Z
- public final fun getColorScheme ()Lcom/shopify/checkoutsheetkit/ColorScheme;
- public final fun getErrorRecovery ()Lcom/shopify/checkoutsheetkit/ErrorRecovery;
- public final fun getLogLevel ()Lcom/shopify/checkoutsheetkit/LogLevel;
- public final fun getPlatform ()Lcom/shopify/checkoutsheetkit/Platform;
- public final fun getPreloading ()Lcom/shopify/checkoutsheetkit/Preloading;
+ public final fun getColorScheme ()Lcom/shopify/checkoutkit/ColorScheme;
+ public final fun getErrorRecovery ()Lcom/shopify/checkoutkit/ErrorRecovery;
+ public final fun getLogLevel ()Lcom/shopify/checkoutkit/LogLevel;
+ public final fun getPlatform ()Lcom/shopify/checkoutkit/Platform;
+ public final fun getPreloading ()Lcom/shopify/checkoutkit/Preloading;
public fun hashCode ()I
- public final fun setColorScheme (Lcom/shopify/checkoutsheetkit/ColorScheme;)V
- public final fun setErrorRecovery (Lcom/shopify/checkoutsheetkit/ErrorRecovery;)V
- public final fun setLogLevel (Lcom/shopify/checkoutsheetkit/LogLevel;)V
- public final fun setPlatform (Lcom/shopify/checkoutsheetkit/Platform;)V
- public final fun setPreloading (Lcom/shopify/checkoutsheetkit/Preloading;)V
+ public final fun setColorScheme (Lcom/shopify/checkoutkit/ColorScheme;)V
+ public final fun setErrorRecovery (Lcom/shopify/checkoutkit/ErrorRecovery;)V
+ public final fun setLogLevel (Lcom/shopify/checkoutkit/LogLevel;)V
+ public final fun setPlatform (Lcom/shopify/checkoutkit/Platform;)V
+ public final fun setPreloading (Lcom/shopify/checkoutkit/Preloading;)V
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/ConfigurationException : com/shopify/checkoutsheetkit/CheckoutException {
- public static final field Companion Lcom/shopify/checkoutsheetkit/ConfigurationException$Companion;
+public final class com/shopify/checkoutkit/ConfigurationException : com/shopify/checkoutkit/CheckoutException {
+ public static final field Companion Lcom/shopify/checkoutkit/ConfigurationException$Companion;
public static final field STOREFRONT_PASSWORD_REQUIRED Ljava/lang/String;
public static final field UNKNOWN Ljava/lang/String;
public fun (Ljava/lang/String;Ljava/lang/String;Z)V
@@ -379,79 +379,79 @@ public final class com/shopify/checkoutsheetkit/ConfigurationException : com/sho
public fun (Z)V
}
-public final class com/shopify/checkoutsheetkit/ConfigurationException$Companion {
+public final class com/shopify/checkoutkit/ConfigurationException$Companion {
}
-public abstract interface class com/shopify/checkoutsheetkit/ConfigurationUpdater {
- public abstract fun configure (Lcom/shopify/checkoutsheetkit/Configuration;)V
+public abstract interface class com/shopify/checkoutkit/ConfigurationUpdater {
+ public abstract fun configure (Lcom/shopify/checkoutkit/Configuration;)V
}
-public abstract class com/shopify/checkoutsheetkit/DefaultCheckoutEventProcessor : com/shopify/checkoutsheetkit/CheckoutEventProcessor {
+public abstract class com/shopify/checkoutkit/DefaultCheckoutEventProcessor : com/shopify/checkoutkit/CheckoutEventProcessor {
public fun (Landroid/content/Context;)V
- public fun (Landroid/content/Context;Lcom/shopify/checkoutsheetkit/LogWrapper;)V
- public synthetic fun (Landroid/content/Context;Lcom/shopify/checkoutsheetkit/LogWrapper;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Landroid/content/Context;Lcom/shopify/checkoutkit/LogWrapper;)V
+ public synthetic fun (Landroid/content/Context;Lcom/shopify/checkoutkit/LogWrapper;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun onCheckoutLinkClicked (Landroid/net/Uri;)V
public fun onGeolocationPermissionsHidePrompt ()V
public fun onGeolocationPermissionsShowPrompt (Ljava/lang/String;Landroid/webkit/GeolocationPermissions$Callback;)V
public fun onPermissionRequest (Landroid/webkit/PermissionRequest;)V
public fun onShowFileChooser (Landroid/webkit/WebView;Landroid/webkit/ValueCallback;Landroid/webkit/WebChromeClient$FileChooserParams;)Z
- public fun onWebPixelEvent (Lcom/shopify/checkoutsheetkit/pixelevents/PixelEvent;)V
+ public fun onWebPixelEvent (Lcom/shopify/checkoutkit/pixelevents/PixelEvent;)V
}
-public final class com/shopify/checkoutsheetkit/DrawableResource {
- public static final field Companion Lcom/shopify/checkoutsheetkit/DrawableResource$Companion;
+public final class com/shopify/checkoutkit/DrawableResource {
+ public static final field Companion Lcom/shopify/checkoutkit/DrawableResource$Companion;
public fun (I)V
public final fun component1 ()I
- public final fun copy (I)Lcom/shopify/checkoutsheetkit/DrawableResource;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/DrawableResource;IILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/DrawableResource;
+ public final fun copy (I)Lcom/shopify/checkoutkit/DrawableResource;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/DrawableResource;IILjava/lang/Object;)Lcom/shopify/checkoutkit/DrawableResource;
public fun equals (Ljava/lang/Object;)Z
public final fun getId ()I
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/DrawableResource$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/DrawableResource$$serializer;
+public final class com/shopify/checkoutkit/DrawableResource$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/DrawableResource$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/DrawableResource;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/DrawableResource;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/DrawableResource;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/DrawableResource;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/DrawableResource$Companion {
+public final class com/shopify/checkoutkit/DrawableResource$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public abstract interface class com/shopify/checkoutsheetkit/ErrorRecovery {
- public abstract fun preRecoveryActions (Lcom/shopify/checkoutsheetkit/CheckoutException;Ljava/lang/String;)V
- public abstract fun shouldRecoverFromError (Lcom/shopify/checkoutsheetkit/CheckoutException;)Z
+public abstract interface class com/shopify/checkoutkit/ErrorRecovery {
+ public abstract fun preRecoveryActions (Lcom/shopify/checkoutkit/CheckoutException;Ljava/lang/String;)V
+ public abstract fun shouldRecoverFromError (Lcom/shopify/checkoutkit/CheckoutException;)Z
}
-public final class com/shopify/checkoutsheetkit/ErrorRecovery$DefaultImpls {
- public static fun preRecoveryActions (Lcom/shopify/checkoutsheetkit/ErrorRecovery;Lcom/shopify/checkoutsheetkit/CheckoutException;Ljava/lang/String;)V
- public static fun shouldRecoverFromError (Lcom/shopify/checkoutsheetkit/ErrorRecovery;Lcom/shopify/checkoutsheetkit/CheckoutException;)Z
+public final class com/shopify/checkoutkit/ErrorRecovery$DefaultImpls {
+ public static fun preRecoveryActions (Lcom/shopify/checkoutkit/ErrorRecovery;Lcom/shopify/checkoutkit/CheckoutException;Ljava/lang/String;)V
+ public static fun shouldRecoverFromError (Lcom/shopify/checkoutkit/ErrorRecovery;Lcom/shopify/checkoutkit/CheckoutException;)Z
}
-public final class com/shopify/checkoutsheetkit/HttpException : com/shopify/checkoutsheetkit/CheckoutUnavailableException {
+public final class com/shopify/checkoutkit/HttpException : com/shopify/checkoutkit/CheckoutUnavailableException {
public fun (IZ)V
public fun (Ljava/lang/String;IZ)V
public synthetic fun (Ljava/lang/String;IZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun getStatusCode ()I
}
-public final class com/shopify/checkoutsheetkit/LogLevel : java/lang/Enum {
- public static final field DEBUG Lcom/shopify/checkoutsheetkit/LogLevel;
- public static final field ERROR Lcom/shopify/checkoutsheetkit/LogLevel;
- public static final field WARN Lcom/shopify/checkoutsheetkit/LogLevel;
+public final class com/shopify/checkoutkit/LogLevel : java/lang/Enum {
+ public static final field DEBUG Lcom/shopify/checkoutkit/LogLevel;
+ public static final field ERROR Lcom/shopify/checkoutkit/LogLevel;
+ public static final field WARN Lcom/shopify/checkoutkit/LogLevel;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
- public static fun valueOf (Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/LogLevel;
- public static fun values ()[Lcom/shopify/checkoutsheetkit/LogLevel;
+ public static fun valueOf (Ljava/lang/String;)Lcom/shopify/checkoutkit/LogLevel;
+ public static fun values ()[Lcom/shopify/checkoutkit/LogLevel;
}
-public final class com/shopify/checkoutsheetkit/LogWrapper {
+public final class com/shopify/checkoutkit/LogWrapper {
public fun ()V
public final fun d (Ljava/lang/String;Ljava/lang/String;)V
public final fun e (Ljava/lang/String;Ljava/lang/String;)V
@@ -459,39 +459,39 @@ public final class com/shopify/checkoutsheetkit/LogWrapper {
public final fun w (Ljava/lang/String;Ljava/lang/String;)V
}
-public final class com/shopify/checkoutsheetkit/Platform : java/lang/Enum {
- public static final field REACT_NATIVE Lcom/shopify/checkoutsheetkit/Platform;
+public final class com/shopify/checkoutkit/Platform : java/lang/Enum {
+ public static final field REACT_NATIVE Lcom/shopify/checkoutkit/Platform;
public final fun getDisplayName ()Ljava/lang/String;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
- public static fun valueOf (Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/Platform;
- public static fun values ()[Lcom/shopify/checkoutsheetkit/Platform;
+ public static fun valueOf (Ljava/lang/String;)Lcom/shopify/checkoutkit/Platform;
+ public static fun values ()[Lcom/shopify/checkoutkit/Platform;
}
-public final class com/shopify/checkoutsheetkit/Preloading {
+public final class com/shopify/checkoutkit/Preloading {
public fun ()V
public fun (Z)V
public synthetic fun (ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Z
- public final fun copy (Z)Lcom/shopify/checkoutsheetkit/Preloading;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/Preloading;ZILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/Preloading;
+ public final fun copy (Z)Lcom/shopify/checkoutkit/Preloading;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/Preloading;ZILjava/lang/Object;)Lcom/shopify/checkoutkit/Preloading;
public fun equals (Ljava/lang/Object;)Z
public final fun getEnabled ()Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/ShopifyCheckoutSheetKit {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/ShopifyCheckoutSheetKit;
+public final class com/shopify/checkoutkit/ShopifyCheckoutKit {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/ShopifyCheckoutKit;
public static final field version Ljava/lang/String;
- public static final fun configure (Lcom/shopify/checkoutsheetkit/ConfigurationUpdater;)V
- public static final fun getConfiguration ()Lcom/shopify/checkoutsheetkit/Configuration;
+ public static final fun configure (Lcom/shopify/checkoutkit/ConfigurationUpdater;)V
+ public static final fun getConfiguration ()Lcom/shopify/checkoutkit/Configuration;
public static final fun invalidate ()V
public static final fun preload (Ljava/lang/String;Landroidx/activity/ComponentActivity;)V
- public static final fun present (Ljava/lang/String;Landroidx/activity/ComponentActivity;Lcom/shopify/checkoutsheetkit/DefaultCheckoutEventProcessor;)Lcom/shopify/checkoutsheetkit/CheckoutSheetKitDialog;
+ public static final fun present (Ljava/lang/String;Landroidx/activity/ComponentActivity;Lcom/shopify/checkoutkit/DefaultCheckoutEventProcessor;)Lcom/shopify/checkoutkit/CheckoutKitDialog;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Address {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/Address$Companion;
+public final class com/shopify/checkoutkit/lifecycleevents/Address {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/Address$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
@@ -506,8 +506,8 @@ public final class com/shopify/checkoutsheetkit/lifecycleevents/Address {
public final fun component7 ()Ljava/lang/String;
public final fun component8 ()Ljava/lang/String;
public final fun component9 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/Address;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/Address;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/Address;
public fun equals (Ljava/lang/Object;)Z
public final fun getAddress1 ()Ljava/lang/String;
public final fun getAddress2 ()Ljava/lang/String;
@@ -524,70 +524,70 @@ public final class com/shopify/checkoutsheetkit/lifecycleevents/Address {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Address$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/Address$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/Address$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/Address$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/Address;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/Address;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Address$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/Address$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartInfo {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo$Companion;
- public fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;Ljava/lang/String;)V
+public final class com/shopify/checkoutkit/lifecycleevents/CartInfo {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/CartInfo$Companion;
+ public fun (Ljava/util/List;Lcom/shopify/checkoutkit/lifecycleevents/Price;Ljava/lang/String;)V
public final fun component1 ()Ljava/util/List;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;
+ public final fun component2 ()Lcom/shopify/checkoutkit/lifecycleevents/Price;
public final fun component3 ()Ljava/lang/String;
- public final fun copy (Ljava/util/List;Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;Ljava/util/List;Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;
+ public final fun copy (Ljava/util/List;Lcom/shopify/checkoutkit/lifecycleevents/Price;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;Ljava/util/List;Lcom/shopify/checkoutkit/lifecycleevents/Price;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;
public fun equals (Ljava/lang/Object;)Z
public final fun getLines ()Ljava/util/List;
- public final fun getPrice ()Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;
+ public final fun getPrice ()Lcom/shopify/checkoutkit/lifecycleevents/Price;
public final fun getToken ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartInfo$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/CartInfo$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/CartInfo$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartInfo$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/CartInfo$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLine {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLine$Companion;
- public fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;)V
- public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+public final class com/shopify/checkoutkit/lifecycleevents/CartLine {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/CartLine$Companion;
+ public fun (Ljava/util/List;Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;)V
+ public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/List;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;
+ public final fun component2 ()Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;
public final fun component3 ()Ljava/lang/String;
- public final fun component4 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun component4 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component5 ()Ljava/lang/String;
public final fun component6 ()I
public final fun component7 ()Ljava/lang/String;
- public final fun copy (Ljava/util/List;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLine;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLine;Ljava/util/List;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLine;
+ public final fun copy (Ljava/util/List;Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/CartLine;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/CartLine;Ljava/util/List;Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;ILjava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/CartLine;
public fun equals (Ljava/lang/Object;)Z
public final fun getDiscounts ()Ljava/util/List;
- public final fun getImage ()Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;
+ public final fun getImage ()Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;
public final fun getMerchandiseId ()Ljava/lang/String;
- public final fun getPrice ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getPrice ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getProductId ()Ljava/lang/String;
public final fun getQuantity ()I
public final fun getTitle ()Ljava/lang/String;
@@ -595,31 +595,31 @@ public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLine {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLine$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLine$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/CartLine$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/CartLine$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLine;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/CartLine;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLine;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/CartLine;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLine$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/CartLine$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLineImage {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage$Companion;
+public final class com/shopify/checkoutkit/lifecycleevents/CartLineImage {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage$Companion;
public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;
public fun equals (Ljava/lang/Object;)Z
public final fun getAltText ()Ljava/lang/String;
public final fun getLg ()Ljava/lang/String;
@@ -629,124 +629,124 @@ public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLineImage {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLineImage$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/CartLineImage$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartLineImage;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/CartLineImage;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CartLineImage$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/CartLineImage$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent$Companion;
- public fun (Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;
- public final fun copy (Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent;Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent;
+public final class com/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent$Companion;
+ public fun (Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;
+ public final fun copy (Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;)Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent;Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent;
public fun equals (Ljava/lang/Object;)Z
- public final fun getOrderDetails ()Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;
+ public final fun getOrderDetails ()Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEvent$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEvent$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails$Companion;
+public final class com/shopify/checkoutkit/lifecycleevents/DeliveryDetails {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails$Companion;
public fun ()V
- public fun (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Ljava/lang/String;)V
- public synthetic fun (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/lang/String;Lcom/shopify/checkoutkit/lifecycleevents/Address;Ljava/lang/String;)V
+ public synthetic fun (Ljava/lang/String;Lcom/shopify/checkoutkit/lifecycleevents/Address;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;
+ public final fun component2 ()Lcom/shopify/checkoutkit/lifecycleevents/Address;
public final fun component3 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;
+ public final fun copy (Ljava/lang/String;Lcom/shopify/checkoutkit/lifecycleevents/Address;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;Lcom/shopify/checkoutkit/lifecycleevents/Address;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;
public fun equals (Ljava/lang/Object;)Z
public final fun getAdditionalInfo ()Ljava/lang/String;
- public final fun getLocation ()Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;
+ public final fun getLocation ()Lcom/shopify/checkoutkit/lifecycleevents/Address;
public final fun getName ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/DeliveryDetails$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/DeliveryDetails$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo$Companion;
- public fun (Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;
+public final class com/shopify/checkoutkit/lifecycleevents/DeliveryInfo {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/DeliveryInfo$Companion;
+ public fun (Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo;Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo;
+ public final fun copy (Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/DeliveryInfo;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/DeliveryInfo;Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/DeliveryInfo;
public fun equals (Ljava/lang/Object;)Z
- public final fun getDetails ()Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryDetails;
+ public final fun getDetails ()Lcom/shopify/checkoutkit/lifecycleevents/DeliveryDetails;
public final fun getMethod ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/DeliveryInfo$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/DeliveryInfo$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/DeliveryInfo;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/DeliveryInfo;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/DeliveryInfo$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/DeliveryInfo$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Discount {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/Discount$Companion;
+public final class com/shopify/checkoutkit/lifecycleevents/Discount {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/Discount$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Ljava/lang/Double;
public final fun component5 ()Ljava/lang/String;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Discount;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/Discount;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Discount;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/Discount;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/Discount;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/Discount;
public fun equals (Ljava/lang/Object;)Z
- public final fun getAmount ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getAmount ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getApplicationType ()Ljava/lang/String;
public final fun getTitle ()Ljava/lang/String;
public final fun getValue ()Ljava/lang/Double;
@@ -755,37 +755,37 @@ public final class com/shopify/checkoutsheetkit/lifecycleevents/Discount {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Discount$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/Discount$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/Discount$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/Discount$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Discount;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/Discount;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/Discount;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/Discount;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Discount$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/Discount$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/OrderDetails {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails$Companion;
- public fun (Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;
+public final class com/shopify/checkoutkit/lifecycleevents/OrderDetails {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails$Companion;
+ public fun (Lcom/shopify/checkoutkit/lifecycleevents/Address;Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/lifecycleevents/Address;Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/lifecycleevents/Address;
+ public final fun component2 ()Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;
public final fun component3 ()Ljava/util/List;
public final fun component4 ()Ljava/lang/String;
public final fun component5 ()Ljava/lang/String;
public final fun component6 ()Ljava/util/List;
public final fun component7 ()Ljava/lang/String;
- public final fun copy (Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;
+ public final fun copy (Lcom/shopify/checkoutkit/lifecycleevents/Address;Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;Lcom/shopify/checkoutkit/lifecycleevents/Address;Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;
public fun equals (Ljava/lang/Object;)Z
- public final fun getBillingAddress ()Lcom/shopify/checkoutsheetkit/lifecycleevents/Address;
- public final fun getCart ()Lcom/shopify/checkoutsheetkit/lifecycleevents/CartInfo;
+ public final fun getBillingAddress ()Lcom/shopify/checkoutkit/lifecycleevents/Address;
+ public final fun getCart ()Lcom/shopify/checkoutkit/lifecycleevents/CartInfo;
public final fun getDeliveries ()Ljava/util/List;
public final fun getEmail ()Ljava/lang/String;
public final fun getId ()Ljava/lang/String;
@@ -795,29 +795,29 @@ public final class com/shopify/checkoutsheetkit/lifecycleevents/OrderDetails {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/OrderDetails$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/OrderDetails$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/OrderDetails;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/OrderDetails;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/OrderDetails$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/OrderDetails$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod$Companion;
+public final class com/shopify/checkoutkit/lifecycleevents/PaymentMethod {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/PaymentMethod$Companion;
public fun (Ljava/util/Map;Ljava/lang/String;)V
public synthetic fun (Ljava/util/Map;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/Map;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/util/Map;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod;Ljava/util/Map;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod;
+ public final fun copy (Ljava/util/Map;Ljava/lang/String;)Lcom/shopify/checkoutkit/lifecycleevents/PaymentMethod;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/PaymentMethod;Ljava/util/Map;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/PaymentMethod;
public fun equals (Ljava/lang/Object;)Z
public final fun getDetails ()Ljava/util/Map;
public final fun getType ()Ljava/lang/String;
@@ -825,67 +825,67 @@ public final class com/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/PaymentMethod$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/PaymentMethod$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/PaymentMethod;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/PaymentMethod;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/PaymentMethod$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/PaymentMethod$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Price {
- public static final field Companion Lcom/shopify/checkoutsheetkit/lifecycleevents/Price$Companion;
+public final class com/shopify/checkoutkit/lifecycleevents/Price {
+ public static final field Companion Lcom/shopify/checkoutkit/lifecycleevents/Price$Companion;
public fun ()V
- public fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;)V
- public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;)V
+ public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/List;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun component4 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun component5 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun copy (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun component3 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun component4 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun component5 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun copy (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;)Lcom/shopify/checkoutkit/lifecycleevents/Price;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/lifecycleevents/Price;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;ILjava/lang/Object;)Lcom/shopify/checkoutkit/lifecycleevents/Price;
public fun equals (Ljava/lang/Object;)Z
public final fun getDiscounts ()Ljava/util/List;
- public final fun getShipping ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun getSubtotal ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun getTaxes ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun getTotal ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getShipping ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun getSubtotal ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun getTaxes ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun getTotal ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Price$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/lifecycleevents/Price$$serializer;
+public final class com/shopify/checkoutkit/lifecycleevents/Price$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/lifecycleevents/Price$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/lifecycleevents/Price;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/lifecycleevents/Price;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/lifecycleevents/Price;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/lifecycleevents/Price$Companion {
+public final class com/shopify/checkoutkit/lifecycleevents/Price$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Attribute {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Attribute$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Attribute {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Attribute$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Attribute;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Attribute;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Attribute;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Attribute;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Attribute;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Attribute;
public fun equals (Ljava/lang/Object;)Z
public final fun getKey ()Ljava/lang/String;
public final fun getValue ()Ljava/lang/String;
@@ -893,236 +893,236 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Attribute {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Attribute$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Attribute$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Attribute$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Attribute$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Attribute;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Attribute;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Attribute;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Attribute;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Attribute$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Attribute$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Checkout {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Checkout$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Checkout {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Checkout$Companion;
public fun ()V
- public fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/Localization;Lcom/shopify/checkoutsheetkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/util/List;)V
- public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/Localization;Lcom/shopify/checkoutsheetkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/Localization;Lcom/shopify/checkoutkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Lcom/shopify/checkoutkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/util/List;)V
+ public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/Localization;Lcom/shopify/checkoutkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Lcom/shopify/checkoutkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/List;
public final fun component10 ()Ljava/util/List;
- public final fun component11 ()Lcom/shopify/checkoutsheetkit/pixelevents/Localization;
- public final fun component12 ()Lcom/shopify/checkoutsheetkit/pixelevents/Order;
+ public final fun component11 ()Lcom/shopify/checkoutkit/pixelevents/Localization;
+ public final fun component12 ()Lcom/shopify/checkoutkit/pixelevents/Order;
public final fun component13 ()Ljava/lang/String;
- public final fun component14 ()Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;
- public final fun component15 ()Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;
+ public final fun component14 ()Lcom/shopify/checkoutkit/pixelevents/MailingAddress;
+ public final fun component15 ()Lcom/shopify/checkoutkit/pixelevents/ShippingRate;
public final fun component16 ()Ljava/lang/String;
- public final fun component17 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun component17 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component18 ()Ljava/lang/String;
- public final fun component19 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;
- public final fun component20 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun component19 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/MailingAddress;
+ public final fun component20 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component21 ()Ljava/util/List;
public final fun component3 ()Ljava/lang/Boolean;
public final fun component4 ()Ljava/lang/Boolean;
public final fun component5 ()Ljava/lang/String;
- public final fun component6 ()Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;
+ public final fun component6 ()Lcom/shopify/checkoutkit/pixelevents/Delivery;
public final fun component7 ()Ljava/util/List;
- public final fun component8 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun component8 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component9 ()Ljava/lang/String;
- public final fun copy (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/Localization;Lcom/shopify/checkoutsheetkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/util/List;)Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/Localization;Lcom/shopify/checkoutsheetkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/util/List;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;
+ public final fun copy (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/Localization;Lcom/shopify/checkoutkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Lcom/shopify/checkoutkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/util/List;)Lcom/shopify/checkoutkit/pixelevents/Checkout;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Checkout;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Delivery;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/Localization;Lcom/shopify/checkoutkit/pixelevents/Order;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Lcom/shopify/checkoutkit/pixelevents/ShippingRate;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/util/List;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Checkout;
public fun equals (Ljava/lang/Object;)Z
public final fun getAttributes ()Ljava/util/List;
- public final fun getBillingAddress ()Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;
+ public final fun getBillingAddress ()Lcom/shopify/checkoutkit/pixelevents/MailingAddress;
public final fun getBuyerAcceptsEmailMarketing ()Ljava/lang/Boolean;
public final fun getBuyerAcceptsSmsMarketing ()Ljava/lang/Boolean;
public final fun getCurrencyCode ()Ljava/lang/String;
- public final fun getDelivery ()Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;
+ public final fun getDelivery ()Lcom/shopify/checkoutkit/pixelevents/Delivery;
public final fun getDiscountApplications ()Ljava/util/List;
- public final fun getDiscountsAmount ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getDiscountsAmount ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getEmail ()Ljava/lang/String;
public final fun getLineItems ()Ljava/util/List;
- public final fun getLocalization ()Lcom/shopify/checkoutsheetkit/pixelevents/Localization;
- public final fun getOrder ()Lcom/shopify/checkoutsheetkit/pixelevents/Order;
+ public final fun getLocalization ()Lcom/shopify/checkoutkit/pixelevents/Localization;
+ public final fun getOrder ()Lcom/shopify/checkoutkit/pixelevents/Order;
public final fun getPhone ()Ljava/lang/String;
- public final fun getShippingAddress ()Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;
- public final fun getShippingLine ()Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;
+ public final fun getShippingAddress ()Lcom/shopify/checkoutkit/pixelevents/MailingAddress;
+ public final fun getShippingLine ()Lcom/shopify/checkoutkit/pixelevents/ShippingRate;
public final fun getSmsMarketingPhone ()Ljava/lang/String;
- public final fun getSubtotalPrice ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getSubtotalPrice ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getToken ()Ljava/lang/String;
- public final fun getTotalPrice ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun getTotalTax ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getTotalPrice ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun getTotalTax ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getTransactions ()Ljava/util/List;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Checkout$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Checkout$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Checkout$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Checkout$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Checkout;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Checkout;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Checkout$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Checkout$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem$Companion;
+public final class com/shopify/checkoutkit/pixelevents/CheckoutLineItem {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/CheckoutLineItem$Companion;
public fun ()V
- public fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;)V
- public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/ProductVariant;)V
+ public synthetic fun (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/ProductVariant;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/List;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Ljava/util/List;
public final fun component5 ()Ljava/lang/Double;
- public final fun component6 ()Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;
+ public final fun component6 ()Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;
public final fun component7 ()Ljava/lang/String;
- public final fun component8 ()Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;
- public final fun copy (Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;)Lcom/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem;Ljava/util/List;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem;
+ public final fun component8 ()Lcom/shopify/checkoutkit/pixelevents/ProductVariant;
+ public final fun copy (Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/ProductVariant;)Lcom/shopify/checkoutkit/pixelevents/CheckoutLineItem;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/CheckoutLineItem;Ljava/util/List;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/util/List;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/ProductVariant;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/CheckoutLineItem;
public fun equals (Ljava/lang/Object;)Z
public final fun getDiscountAllocations ()Ljava/util/List;
- public final fun getFinalLinePrice ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getFinalLinePrice ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getId ()Ljava/lang/String;
public final fun getProperties ()Ljava/util/List;
public final fun getQuantity ()Ljava/lang/Double;
- public final fun getSellingPlanAllocation ()Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;
+ public final fun getSellingPlanAllocation ()Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;
public final fun getTitle ()Ljava/lang/String;
- public final fun getVariant ()Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;
+ public final fun getVariant ()Lcom/shopify/checkoutkit/pixelevents/ProductVariant;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/CheckoutLineItem$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/CheckoutLineItem$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/CheckoutLineItem;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/CheckoutLineItem;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/CheckoutLineItem$Companion {
+public final class com/shopify/checkoutkit/pixelevents/CheckoutLineItem$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Context {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Context$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Context {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Context$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/Document;Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;Lcom/shopify/checkoutsheetkit/pixelevents/Window;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/Document;Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;Lcom/shopify/checkoutsheetkit/pixelevents/Window;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/Document;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/pixelevents/Window;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/Document;Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;Lcom/shopify/checkoutsheetkit/pixelevents/Window;)Lcom/shopify/checkoutsheetkit/pixelevents/Context;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Context;Lcom/shopify/checkoutsheetkit/pixelevents/Document;Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;Lcom/shopify/checkoutsheetkit/pixelevents/Window;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Context;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/Document;Lcom/shopify/checkoutkit/pixelevents/Navigator;Lcom/shopify/checkoutkit/pixelevents/Window;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/Document;Lcom/shopify/checkoutkit/pixelevents/Navigator;Lcom/shopify/checkoutkit/pixelevents/Window;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/Document;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/Navigator;
+ public final fun component3 ()Lcom/shopify/checkoutkit/pixelevents/Window;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/Document;Lcom/shopify/checkoutkit/pixelevents/Navigator;Lcom/shopify/checkoutkit/pixelevents/Window;)Lcom/shopify/checkoutkit/pixelevents/Context;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Context;Lcom/shopify/checkoutkit/pixelevents/Document;Lcom/shopify/checkoutkit/pixelevents/Navigator;Lcom/shopify/checkoutkit/pixelevents/Window;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Context;
public fun equals (Ljava/lang/Object;)Z
- public final fun getDocument ()Lcom/shopify/checkoutsheetkit/pixelevents/Document;
- public final fun getNavigator ()Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;
- public final fun getWindow ()Lcom/shopify/checkoutsheetkit/pixelevents/Window;
+ public final fun getDocument ()Lcom/shopify/checkoutkit/pixelevents/Document;
+ public final fun getNavigator ()Lcom/shopify/checkoutkit/pixelevents/Navigator;
+ public final fun getWindow ()Lcom/shopify/checkoutkit/pixelevents/Window;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Context$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Context$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Context$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Context$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Context;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Context;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Context;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Context;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Context$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Context$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Country {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Country$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Country {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Country$Companion;
public fun ()V
public fun (Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Country;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Country;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Country;
+ public final fun copy (Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Country;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Country;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Country;
public fun equals (Ljava/lang/Object;)Z
public final fun getIsoCode ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Country$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Country$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Country$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Country$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Country;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Country;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Country;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Country;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Country$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Country$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent : com/shopify/checkoutsheetkit/pixelevents/PixelEvent {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent$Companion;
+public final class com/shopify/checkoutkit/pixelevents/CustomPixelEvent : com/shopify/checkoutkit/pixelevents/PixelEvent {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/CustomPixelEvent$Companion;
public fun ()V
- public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Ljava/lang/String;)V
- public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Ljava/lang/String;)V
+ public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/String;
- public final fun component4 ()Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
- public final fun component5 ()Lcom/shopify/checkoutsheetkit/pixelevents/Context;
+ public final fun component4 ()Lcom/shopify/checkoutkit/pixelevents/EventType;
+ public final fun component5 ()Lcom/shopify/checkoutkit/pixelevents/Context;
public final fun component6 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/CustomPixelEvent;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/CustomPixelEvent;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/CustomPixelEvent;
public fun equals (Ljava/lang/Object;)Z
- public final fun getContext ()Lcom/shopify/checkoutsheetkit/pixelevents/Context;
+ public final fun getContext ()Lcom/shopify/checkoutkit/pixelevents/Context;
public final fun getCustomData ()Ljava/lang/String;
public fun getId ()Ljava/lang/String;
public fun getName ()Ljava/lang/String;
public fun getTimestamp ()Ljava/lang/String;
- public fun getType ()Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
+ public fun getType ()Lcom/shopify/checkoutkit/pixelevents/EventType;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/CustomPixelEvent$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/CustomPixelEvent$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/CustomPixelEvent;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/CustomPixelEvent;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/CustomPixelEvent$Companion {
+public final class com/shopify/checkoutkit/pixelevents/CustomPixelEvent$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Customer {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Customer$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Customer {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Customer$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
@@ -1132,8 +1132,8 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Customer {
public final fun component4 ()Ljava/lang/String;
public final fun component5 ()Ljava/lang/Double;
public final fun component6 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Customer;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Customer;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Customer;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Customer;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Customer;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Customer;
public fun equals (Ljava/lang/Object;)Z
public final fun getEmail ()Ljava/lang/String;
public final fun getFirstName ()Ljava/lang/String;
@@ -1145,66 +1145,66 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Customer {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Customer$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Customer$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Customer$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Customer$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Customer;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Customer;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Customer;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Customer;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Customer$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Customer$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Delivery {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Delivery$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Delivery {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Delivery$Companion;
public fun ()V
public fun (Ljava/util/List;)V
public synthetic fun (Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/List;
- public final fun copy (Ljava/util/List;)Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;Ljava/util/List;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;
+ public final fun copy (Ljava/util/List;)Lcom/shopify/checkoutkit/pixelevents/Delivery;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Delivery;Ljava/util/List;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Delivery;
public fun equals (Ljava/lang/Object;)Z
public final fun getSelectedDeliveryOptions ()Ljava/util/List;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Delivery$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Delivery$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Delivery$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Delivery$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Delivery;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Delivery;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Delivery;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Delivery$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Delivery$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DeliveryOption {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/DeliveryOption$Companion;
+public final class com/shopify/checkoutkit/pixelevents/DeliveryOption {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/DeliveryOption$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Ljava/lang/String;
public final fun component5 ()Ljava/lang/String;
public final fun component6 ()Ljava/lang/String;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/DeliveryOption;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/DeliveryOption;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/DeliveryOption;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/DeliveryOption;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/DeliveryOption;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/DeliveryOption;
public fun equals (Ljava/lang/Object;)Z
- public final fun getCost ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun getCostAfterDiscounts ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getCost ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun getCostAfterDiscounts ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getDescription ()Ljava/lang/String;
public final fun getHandle ()Ljava/lang/String;
public final fun getTitle ()Ljava/lang/String;
@@ -1213,172 +1213,172 @@ public final class com/shopify/checkoutsheetkit/pixelevents/DeliveryOption {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DeliveryOption$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/DeliveryOption$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/DeliveryOption$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/DeliveryOption$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/DeliveryOption;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/DeliveryOption;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/DeliveryOption;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/DeliveryOption;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DeliveryOption$Companion {
+public final class com/shopify/checkoutkit/pixelevents/DeliveryOption$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DiscountAllocation {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/DiscountAllocation$Companion;
+public final class com/shopify/checkoutkit/pixelevents/DiscountAllocation {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/DiscountAllocation$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;)Lcom/shopify/checkoutsheetkit/pixelevents/DiscountAllocation;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/DiscountAllocation;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/DiscountAllocation;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;)Lcom/shopify/checkoutkit/pixelevents/DiscountAllocation;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/DiscountAllocation;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/DiscountAllocation;
public fun equals (Ljava/lang/Object;)Z
- public final fun getAmount ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun getDiscountApplication ()Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;
+ public final fun getAmount ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun getDiscountApplication ()Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DiscountAllocation$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/DiscountAllocation$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/DiscountAllocation$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/DiscountAllocation$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/DiscountAllocation;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/DiscountAllocation;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/DiscountAllocation;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/DiscountAllocation;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DiscountAllocation$Companion {
+public final class com/shopify/checkoutkit/pixelevents/DiscountAllocation$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DiscountApplication {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication$Companion;
+public final class com/shopify/checkoutkit/pixelevents/DiscountApplication {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/DiscountApplication$Companion;
public fun ()V
- public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Value;)V
- public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Value;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Value;)V
+ public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Value;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Ljava/lang/String;
public final fun component5 ()Ljava/lang/String;
- public final fun component6 ()Lcom/shopify/checkoutsheetkit/pixelevents/Value;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Value;)Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Value;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;
+ public final fun component6 ()Lcom/shopify/checkoutkit/pixelevents/Value;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Value;)Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Value;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;
public fun equals (Ljava/lang/Object;)Z
public final fun getAllocationMethod ()Ljava/lang/String;
public final fun getTargetSelection ()Ljava/lang/String;
public final fun getTargetType ()Ljava/lang/String;
public final fun getTitle ()Ljava/lang/String;
public final fun getType ()Ljava/lang/String;
- public final fun getValue ()Lcom/shopify/checkoutsheetkit/pixelevents/Value;
+ public final fun getValue ()Lcom/shopify/checkoutkit/pixelevents/Value;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DiscountApplication$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/DiscountApplication$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/DiscountApplication$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/DiscountApplication;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/DiscountApplication;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/DiscountApplication$Companion {
+public final class com/shopify/checkoutkit/pixelevents/DiscountApplication$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Document {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Document$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Document {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Document$Companion;
public fun ()V
- public fun (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;)V
- public synthetic fun (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;)V
+ public synthetic fun (Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/Location;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/Location;
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Document;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Document;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Document;
+ public final fun copy (Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Document;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Document;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Document;
public fun equals (Ljava/lang/Object;)Z
public final fun getCharacterSet ()Ljava/lang/String;
- public final fun getLocation ()Lcom/shopify/checkoutsheetkit/pixelevents/Location;
+ public final fun getLocation ()Lcom/shopify/checkoutkit/pixelevents/Location;
public final fun getReferrer ()Ljava/lang/String;
public final fun getTitle ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Document$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Document$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Document$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Document$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Document;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Document;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Document;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Document;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Document$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Document$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/EventType : java/lang/Enum {
- public static final field CUSTOM Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/EventType$Companion;
- public static final field STANDARD Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
+public final class com/shopify/checkoutkit/pixelevents/EventType : java/lang/Enum {
+ public static final field CUSTOM Lcom/shopify/checkoutkit/pixelevents/EventType;
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/EventType$Companion;
+ public static final field STANDARD Lcom/shopify/checkoutkit/pixelevents/EventType;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public final fun getTypeName ()Ljava/lang/String;
- public static fun valueOf (Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
- public static fun values ()[Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
+ public static fun valueOf (Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/EventType;
+ public static fun values ()[Lcom/shopify/checkoutkit/pixelevents/EventType;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/EventType$Companion {
- public final fun fromTypeName (Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
+public final class com/shopify/checkoutkit/pixelevents/EventType$Companion {
+ public final fun fromTypeName (Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/EventType;
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Image {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Image$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Image {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Image$Companion;
public fun ()V
public fun (Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Image;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Image;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Image;
+ public final fun copy (Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Image;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Image;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Image;
public fun equals (Ljava/lang/Object;)Z
public final fun getSrc ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Image$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Image$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Image$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Image$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Image;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Image;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Image;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Image;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Image$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Image$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/JsonObjectAsStringSerializer : kotlinx/serialization/KSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/JsonObjectAsStringSerializer;
+public final class com/shopify/checkoutkit/pixelevents/JsonObjectAsStringSerializer : kotlinx/serialization/KSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/JsonObjectAsStringSerializer;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/String;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
@@ -1386,70 +1386,70 @@ public final class com/shopify/checkoutsheetkit/pixelevents/JsonObjectAsStringSe
public fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/String;)V
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Language {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Language$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Language {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Language$Companion;
public fun ()V
public fun (Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Language;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Language;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Language;
+ public final fun copy (Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Language;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Language;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Language;
public fun equals (Ljava/lang/Object;)Z
public final fun getIsoCode ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Language$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Language$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Language$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Language$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Language;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Language;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Language;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Language;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Language$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Language$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Localization {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Localization$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Localization {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Localization$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/Country;Lcom/shopify/checkoutsheetkit/pixelevents/Language;Lcom/shopify/checkoutsheetkit/pixelevents/Market;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/Country;Lcom/shopify/checkoutsheetkit/pixelevents/Language;Lcom/shopify/checkoutsheetkit/pixelevents/Market;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/Country;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/Language;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/pixelevents/Market;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/Country;Lcom/shopify/checkoutsheetkit/pixelevents/Language;Lcom/shopify/checkoutsheetkit/pixelevents/Market;)Lcom/shopify/checkoutsheetkit/pixelevents/Localization;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Localization;Lcom/shopify/checkoutsheetkit/pixelevents/Country;Lcom/shopify/checkoutsheetkit/pixelevents/Language;Lcom/shopify/checkoutsheetkit/pixelevents/Market;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Localization;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/Country;Lcom/shopify/checkoutkit/pixelevents/Language;Lcom/shopify/checkoutkit/pixelevents/Market;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/Country;Lcom/shopify/checkoutkit/pixelevents/Language;Lcom/shopify/checkoutkit/pixelevents/Market;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/Country;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/Language;
+ public final fun component3 ()Lcom/shopify/checkoutkit/pixelevents/Market;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/Country;Lcom/shopify/checkoutkit/pixelevents/Language;Lcom/shopify/checkoutkit/pixelevents/Market;)Lcom/shopify/checkoutkit/pixelevents/Localization;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Localization;Lcom/shopify/checkoutkit/pixelevents/Country;Lcom/shopify/checkoutkit/pixelevents/Language;Lcom/shopify/checkoutkit/pixelevents/Market;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Localization;
public fun equals (Ljava/lang/Object;)Z
- public final fun getCountry ()Lcom/shopify/checkoutsheetkit/pixelevents/Country;
- public final fun getLanguage ()Lcom/shopify/checkoutsheetkit/pixelevents/Language;
- public final fun getMarket ()Lcom/shopify/checkoutsheetkit/pixelevents/Market;
+ public final fun getCountry ()Lcom/shopify/checkoutkit/pixelevents/Country;
+ public final fun getLanguage ()Lcom/shopify/checkoutkit/pixelevents/Language;
+ public final fun getMarket ()Lcom/shopify/checkoutkit/pixelevents/Market;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Localization$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Localization$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Localization$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Localization$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Localization;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Localization;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Localization;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Localization;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Localization$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Localization$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Location {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Location$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Location {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Location$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
@@ -1462,8 +1462,8 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Location {
public final fun component7 ()Ljava/lang/String;
public final fun component8 ()Ljava/lang/String;
public final fun component9 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Location;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Location;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Location;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Location;
public fun equals (Ljava/lang/Object;)Z
public final fun getHash ()Ljava/lang/String;
public final fun getHost ()Ljava/lang/String;
@@ -1478,23 +1478,23 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Location {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Location$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Location$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Location$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Location$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Location;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Location;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Location;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Location;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Location$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Location$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/MailingAddress {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress$Companion;
+public final class com/shopify/checkoutkit/pixelevents/MailingAddress {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/MailingAddress$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
@@ -1509,8 +1509,8 @@ public final class com/shopify/checkoutsheetkit/pixelevents/MailingAddress {
public final fun component7 ()Ljava/lang/String;
public final fun component8 ()Ljava/lang/String;
public final fun component9 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/MailingAddress;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/MailingAddress;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/MailingAddress;
public fun equals (Ljava/lang/Object;)Z
public final fun getAddress1 ()Ljava/lang/String;
public final fun getAddress2 ()Ljava/lang/String;
@@ -1527,30 +1527,30 @@ public final class com/shopify/checkoutsheetkit/pixelevents/MailingAddress {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/MailingAddress$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/MailingAddress$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/MailingAddress$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/MailingAddress;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/MailingAddress;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/MailingAddress;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/MailingAddress$Companion {
+public final class com/shopify/checkoutkit/pixelevents/MailingAddress$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Market {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Market$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Market {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Market$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Market;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Market;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Market;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Market;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Market;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Market;
public fun equals (Ljava/lang/Object;)Z
public final fun getHandle ()Ljava/lang/String;
public final fun getId ()Ljava/lang/String;
@@ -1558,30 +1558,30 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Market {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Market$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Market$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Market$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Market$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Market;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Market;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Market;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Market;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Market$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Market$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/MoneyV2 {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2$Companion;
+public final class com/shopify/checkoutkit/pixelevents/MoneyV2 {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/MoneyV2$Companion;
public fun ()V
public fun (Ljava/lang/Double;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/Double;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/Double;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/Double;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/Double;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun copy (Ljava/lang/Double;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/Double;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public fun equals (Ljava/lang/Object;)Z
public final fun getAmount ()Ljava/lang/Double;
public final fun getCurrencyCode ()Ljava/lang/String;
@@ -1589,23 +1589,23 @@ public final class com/shopify/checkoutsheetkit/pixelevents/MoneyV2 {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/MoneyV2$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/MoneyV2$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/MoneyV2$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/MoneyV2$Companion {
+public final class com/shopify/checkoutkit/pixelevents/MoneyV2$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Navigator {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Navigator$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Navigator {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Navigator$Companion;
public fun ()V
public fun (Ljava/lang/Boolean;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/Boolean;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
@@ -1613,8 +1613,8 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Navigator {
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/util/List;
public final fun component4 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/Boolean;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;Ljava/lang/Boolean;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;
+ public final fun copy (Ljava/lang/Boolean;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Navigator;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Navigator;Ljava/lang/Boolean;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Navigator;
public fun equals (Ljava/lang/Object;)Z
public final fun getCookieEnabled ()Ljava/lang/Boolean;
public final fun getLanguage ()Ljava/lang/String;
@@ -1624,61 +1624,61 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Navigator {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Navigator$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Navigator$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Navigator$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Navigator$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Navigator;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Navigator;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Navigator;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Navigator$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Navigator$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Order {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Order$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Order {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Order$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;Ljava/lang/String;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;Ljava/lang/String;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Order;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Order;Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Order;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Order;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Order;Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Order;
public fun equals (Ljava/lang/Object;)Z
- public final fun getCustomer ()Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;
+ public final fun getCustomer ()Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;
public final fun getId ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Order$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Order$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Order$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Order$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Order;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Order;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Order;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Order;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Order$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Order$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/OrderCustomer {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer$Companion;
+public final class com/shopify/checkoutkit/pixelevents/OrderCustomer {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/OrderCustomer$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/Boolean;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/Boolean;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/Boolean;
- public final fun copy (Ljava/lang/String;Ljava/lang/Boolean;)Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;Ljava/lang/String;Ljava/lang/Boolean;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;
+ public final fun copy (Ljava/lang/String;Ljava/lang/Boolean;)Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;Ljava/lang/String;Ljava/lang/Boolean;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;
public fun equals (Ljava/lang/Object;)Z
public final fun getId ()Ljava/lang/String;
public fun hashCode ()I
@@ -1686,59 +1686,59 @@ public final class com/shopify/checkoutsheetkit/pixelevents/OrderCustomer {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/OrderCustomer$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/OrderCustomer$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/OrderCustomer$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/OrderCustomer;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/OrderCustomer;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/OrderCustomer$Companion {
+public final class com/shopify/checkoutkit/pixelevents/OrderCustomer$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public abstract interface class com/shopify/checkoutsheetkit/pixelevents/PixelEvent {
+public abstract interface class com/shopify/checkoutkit/pixelevents/PixelEvent {
public abstract fun getId ()Ljava/lang/String;
public abstract fun getName ()Ljava/lang/String;
public abstract fun getTimestamp ()Ljava/lang/String;
- public abstract fun getType ()Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
+ public abstract fun getType ()Lcom/shopify/checkoutkit/pixelevents/EventType;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue$Companion;
+public final class com/shopify/checkoutkit/pixelevents/PricingPercentageValue {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/PricingPercentageValue$Companion;
public fun ()V
public fun (Ljava/lang/Double;)V
public synthetic fun (Ljava/lang/Double;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/Double;
- public final fun copy (Ljava/lang/Double;)Lcom/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue;
+ public final fun copy (Ljava/lang/Double;)Lcom/shopify/checkoutkit/pixelevents/PricingPercentageValue;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/PricingPercentageValue;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/PricingPercentageValue;
public fun equals (Ljava/lang/Object;)Z
public final fun getPercentage ()Ljava/lang/Double;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/PricingPercentageValue$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/PricingPercentageValue$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/PricingPercentageValue;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/PricingPercentageValue;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/PricingPercentageValue$Companion {
+public final class com/shopify/checkoutkit/pixelevents/PricingPercentageValue$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Product {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Product$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Product {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Product$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
@@ -1748,8 +1748,8 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Product {
public final fun component4 ()Ljava/lang/String;
public final fun component5 ()Ljava/lang/String;
public final fun component6 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Product;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Product;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Product;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Product;
public fun equals (Ljava/lang/Object;)Z
public final fun getId ()Ljava/lang/String;
public final fun getTitle ()Ljava/lang/String;
@@ -1761,40 +1761,40 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Product {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Product$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Product$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Product$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Product$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Product;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Product;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Product;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Product;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Product$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Product$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/ProductVariant {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant$Companion;
+public final class com/shopify/checkoutkit/pixelevents/ProductVariant {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/ProductVariant$Companion;
public fun ()V
- public fun (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Image;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
- public synthetic fun (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Image;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Image;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
+ public synthetic fun (Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Image;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
- public final fun component2 ()Lcom/shopify/checkoutsheetkit/pixelevents/Image;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun component4 ()Lcom/shopify/checkoutsheetkit/pixelevents/Product;
+ public final fun component2 ()Lcom/shopify/checkoutkit/pixelevents/Image;
+ public final fun component3 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun component4 ()Lcom/shopify/checkoutkit/pixelevents/Product;
public final fun component5 ()Ljava/lang/String;
public final fun component6 ()Ljava/lang/String;
public final fun component7 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Image;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/Image;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Lcom/shopify/checkoutsheetkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;
+ public final fun copy (Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Image;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/ProductVariant;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/ProductVariant;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/Image;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Lcom/shopify/checkoutkit/pixelevents/Product;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/ProductVariant;
public fun equals (Ljava/lang/Object;)Z
public final fun getId ()Ljava/lang/String;
- public final fun getImage ()Lcom/shopify/checkoutsheetkit/pixelevents/Image;
- public final fun getPrice ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun getProduct ()Lcom/shopify/checkoutsheetkit/pixelevents/Product;
+ public final fun getImage ()Lcom/shopify/checkoutkit/pixelevents/Image;
+ public final fun getPrice ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun getProduct ()Lcom/shopify/checkoutkit/pixelevents/Product;
public final fun getSku ()Ljava/lang/String;
public final fun getTitle ()Ljava/lang/String;
public final fun getUntranslatedTitle ()Ljava/lang/String;
@@ -1802,30 +1802,30 @@ public final class com/shopify/checkoutsheetkit/pixelevents/ProductVariant {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/ProductVariant$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/ProductVariant$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/ProductVariant$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/ProductVariant;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/ProductVariant;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/ProductVariant;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/ProductVariant$Companion {
+public final class com/shopify/checkoutkit/pixelevents/ProductVariant$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Property {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Property$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Property {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Property$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/Property;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Property;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Property;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/Property;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Property;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Property;
public fun equals (Ljava/lang/Object;)Z
public final fun getKey ()Ljava/lang/String;
public final fun getValue ()Ljava/lang/String;
@@ -1833,30 +1833,30 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Property {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Property$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Property$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Property$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Property$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Property;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Property;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Property;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Property;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Property$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Property$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Screen {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Screen$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Screen {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Screen$Companion;
public fun ()V
public fun (Ljava/lang/Double;Ljava/lang/Double;)V
public synthetic fun (Ljava/lang/Double;Ljava/lang/Double;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/Double;
public final fun component2 ()Ljava/lang/Double;
- public final fun copy (Ljava/lang/Double;Ljava/lang/Double;)Lcom/shopify/checkoutsheetkit/pixelevents/Screen;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Screen;
+ public final fun copy (Ljava/lang/Double;Ljava/lang/Double;)Lcom/shopify/checkoutkit/pixelevents/Screen;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Screen;
public fun equals (Ljava/lang/Object;)Z
public final fun getHeight ()Ljava/lang/Double;
public final fun getWidth ()Ljava/lang/Double;
@@ -1864,30 +1864,30 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Screen {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Screen$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Screen$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Screen$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Screen$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Screen;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Screen;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Screen;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Screen;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Screen$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Screen$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/SellingPlan {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan$Companion;
+public final class com/shopify/checkoutkit/pixelevents/SellingPlan {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/SellingPlan$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/SellingPlan;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/SellingPlan;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/SellingPlan;
public fun equals (Ljava/lang/Object;)Z
public final fun getId ()Ljava/lang/String;
public final fun getName ()Ljava/lang/String;
@@ -1895,187 +1895,187 @@ public final class com/shopify/checkoutsheetkit/pixelevents/SellingPlan {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/SellingPlan$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/SellingPlan$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/SellingPlan$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/SellingPlan;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/SellingPlan;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/SellingPlan$Companion {
+public final class com/shopify/checkoutkit/pixelevents/SellingPlan$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation$Companion;
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;)Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;
+public final class com/shopify/checkoutkit/pixelevents/SellingPlanAllocation {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation$Companion;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/SellingPlan;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/SellingPlan;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/SellingPlan;)Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;Lcom/shopify/checkoutkit/pixelevents/SellingPlan;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;
public fun equals (Ljava/lang/Object;)Z
- public final fun getSellingPlan ()Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlan;
+ public final fun getSellingPlan ()Lcom/shopify/checkoutkit/pixelevents/SellingPlan;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/SellingPlanAllocation$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/SellingPlanAllocation;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/SellingPlanAllocation$Companion {
+public final class com/shopify/checkoutkit/pixelevents/SellingPlanAllocation$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/ShippingRate {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate$Companion;
+public final class com/shopify/checkoutkit/pixelevents/ShippingRate {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/ShippingRate$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;)Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;)Lcom/shopify/checkoutkit/pixelevents/ShippingRate;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/ShippingRate;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/ShippingRate;
public fun equals (Ljava/lang/Object;)Z
- public final fun getPrice ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getPrice ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/ShippingRate$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/ShippingRate$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/ShippingRate$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/ShippingRate;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/ShippingRate;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/ShippingRate;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/ShippingRate$Companion {
+public final class com/shopify/checkoutkit/pixelevents/ShippingRate$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent : com/shopify/checkoutsheetkit/pixelevents/PixelEvent {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent$Companion;
+public final class com/shopify/checkoutkit/pixelevents/StandardPixelEvent : com/shopify/checkoutkit/pixelevents/PixelEvent {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/StandardPixelEvent$Companion;
public fun ()V
- public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;)V
- public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;)V
+ public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/String;
- public final fun component4 ()Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
- public final fun component5 ()Lcom/shopify/checkoutsheetkit/pixelevents/Context;
- public final fun component6 ()Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;)Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/EventType;Lcom/shopify/checkoutsheetkit/pixelevents/Context;Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent;
+ public final fun component4 ()Lcom/shopify/checkoutkit/pixelevents/EventType;
+ public final fun component5 ()Lcom/shopify/checkoutkit/pixelevents/Context;
+ public final fun component6 ()Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;)Lcom/shopify/checkoutkit/pixelevents/StandardPixelEvent;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/StandardPixelEvent;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/EventType;Lcom/shopify/checkoutkit/pixelevents/Context;Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/StandardPixelEvent;
public fun equals (Ljava/lang/Object;)Z
- public final fun getContext ()Lcom/shopify/checkoutsheetkit/pixelevents/Context;
- public final fun getData ()Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;
+ public final fun getContext ()Lcom/shopify/checkoutkit/pixelevents/Context;
+ public final fun getData ()Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;
public fun getId ()Ljava/lang/String;
public fun getName ()Ljava/lang/String;
public fun getTimestamp ()Ljava/lang/String;
- public fun getType ()Lcom/shopify/checkoutsheetkit/pixelevents/EventType;
+ public fun getType ()Lcom/shopify/checkoutkit/pixelevents/EventType;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/StandardPixelEvent$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/StandardPixelEvent$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/StandardPixelEvent;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/StandardPixelEvent;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/StandardPixelEvent$Companion {
+public final class com/shopify/checkoutkit/pixelevents/StandardPixelEvent$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData$Companion;
+public final class com/shopify/checkoutkit/pixelevents/StandardPixelEventData {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;)Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/Checkout;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/Checkout;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/Checkout;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/Checkout;)Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;Lcom/shopify/checkoutkit/pixelevents/Checkout;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;
public fun equals (Ljava/lang/Object;)Z
- public final fun getCheckout ()Lcom/shopify/checkoutsheetkit/pixelevents/Checkout;
+ public final fun getCheckout ()Lcom/shopify/checkoutkit/pixelevents/Checkout;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/StandardPixelEventData$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/StandardPixelEventData;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/StandardPixelEventData$Companion {
+public final class com/shopify/checkoutkit/pixelevents/StandardPixelEventData$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Transaction {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Transaction$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Transaction {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Transaction$Companion;
public fun ()V
- public fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;)V
- public synthetic fun (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun component1 ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;)V
+ public synthetic fun (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public final fun component1 ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun component2 ()Ljava/lang/String;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;
- public final fun copy (Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;)Lcom/shopify/checkoutsheetkit/pixelevents/Transaction;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Transaction;Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Transaction;
+ public final fun component3 ()Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;
+ public final fun copy (Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;)Lcom/shopify/checkoutkit/pixelevents/Transaction;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Transaction;Lcom/shopify/checkoutkit/pixelevents/MoneyV2;Ljava/lang/String;Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Transaction;
public fun equals (Ljava/lang/Object;)Z
- public final fun getAmount ()Lcom/shopify/checkoutsheetkit/pixelevents/MoneyV2;
+ public final fun getAmount ()Lcom/shopify/checkoutkit/pixelevents/MoneyV2;
public final fun getGateway ()Ljava/lang/String;
- public final fun getPaymentMethod ()Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;
+ public final fun getPaymentMethod ()Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Transaction$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Transaction$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Transaction$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Transaction$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Transaction;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Transaction;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Transaction;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Transaction;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Transaction$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Transaction$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod$Companion;
+public final class com/shopify/checkoutkit/pixelevents/TransactionPaymentMethod {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod$Companion;
public fun ()V
public fun (Ljava/lang/String;Ljava/lang/String;)V
public synthetic fun (Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;
+ public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;
public fun equals (Ljava/lang/Object;)Z
public final fun getName ()Ljava/lang/String;
public final fun getType ()Ljava/lang/String;
@@ -2083,31 +2083,31 @@ public final class com/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMe
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/TransactionPaymentMethod$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/TransactionPaymentMethod;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/TransactionPaymentMethod$Companion {
+public final class com/shopify/checkoutkit/pixelevents/TransactionPaymentMethod$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Value {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Value$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Value {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Value$Companion;
public fun ()V
public fun (Ljava/lang/Double;Ljava/lang/String;Ljava/lang/Double;)V
public synthetic fun (Ljava/lang/Double;Ljava/lang/String;Ljava/lang/Double;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/Double;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/Double;
- public final fun copy (Ljava/lang/Double;Ljava/lang/String;Ljava/lang/Double;)Lcom/shopify/checkoutsheetkit/pixelevents/Value;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Value;Ljava/lang/Double;Ljava/lang/String;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Value;
+ public final fun copy (Ljava/lang/Double;Ljava/lang/String;Ljava/lang/Double;)Lcom/shopify/checkoutkit/pixelevents/Value;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Value;Ljava/lang/Double;Ljava/lang/String;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Value;
public fun equals (Ljava/lang/Object;)Z
public final fun getAmount ()Ljava/lang/Double;
public final fun getCurrencyCode ()Ljava/lang/String;
@@ -2116,51 +2116,51 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Value {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Value$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Value$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Value$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Value$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Value;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Value;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Value;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Value;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Value$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Value$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Window {
- public static final field Companion Lcom/shopify/checkoutsheetkit/pixelevents/Window$Companion;
+public final class com/shopify/checkoutkit/pixelevents/Window {
+ public static final field Companion Lcom/shopify/checkoutkit/pixelevents/Window$Companion;
public fun ()V
- public fun (Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;)V
- public synthetic fun (Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;)V
+ public synthetic fun (Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/Double;
public final fun component10 ()Ljava/lang/Double;
public final fun component11 ()Ljava/lang/Double;
public final fun component12 ()Ljava/lang/Double;
public final fun component13 ()Ljava/lang/Double;
public final fun component2 ()Ljava/lang/Double;
- public final fun component3 ()Lcom/shopify/checkoutsheetkit/pixelevents/Location;
+ public final fun component3 ()Lcom/shopify/checkoutkit/pixelevents/Location;
public final fun component4 ()Ljava/lang/String;
public final fun component5 ()Ljava/lang/Double;
public final fun component6 ()Ljava/lang/Double;
public final fun component7 ()Ljava/lang/Double;
public final fun component8 ()Ljava/lang/Double;
- public final fun component9 ()Lcom/shopify/checkoutsheetkit/pixelevents/Screen;
- public final fun copy (Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;)Lcom/shopify/checkoutsheetkit/pixelevents/Window;
- public static synthetic fun copy$default (Lcom/shopify/checkoutsheetkit/pixelevents/Window;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutsheetkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutsheetkit/pixelevents/Window;
+ public final fun component9 ()Lcom/shopify/checkoutkit/pixelevents/Screen;
+ public final fun copy (Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;)Lcom/shopify/checkoutkit/pixelevents/Window;
+ public static synthetic fun copy$default (Lcom/shopify/checkoutkit/pixelevents/Window;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Location;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Lcom/shopify/checkoutkit/pixelevents/Screen;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/Double;ILjava/lang/Object;)Lcom/shopify/checkoutkit/pixelevents/Window;
public fun equals (Ljava/lang/Object;)Z
public final fun getInnerHeight ()Ljava/lang/Double;
public final fun getInnerWidth ()Ljava/lang/Double;
- public final fun getLocation ()Lcom/shopify/checkoutsheetkit/pixelevents/Location;
+ public final fun getLocation ()Lcom/shopify/checkoutkit/pixelevents/Location;
public final fun getOrigin ()Ljava/lang/String;
public final fun getOuterHeight ()Ljava/lang/Double;
public final fun getOuterWidth ()Ljava/lang/Double;
public final fun getPageXOffset ()Ljava/lang/Double;
public final fun getPageYOffset ()Ljava/lang/Double;
- public final fun getScreen ()Lcom/shopify/checkoutsheetkit/pixelevents/Screen;
+ public final fun getScreen ()Lcom/shopify/checkoutkit/pixelevents/Screen;
public final fun getScreenX ()Ljava/lang/Double;
public final fun getScreenY ()Ljava/lang/Double;
public final fun getScrollX ()Ljava/lang/Double;
@@ -2169,18 +2169,18 @@ public final class com/shopify/checkoutsheetkit/pixelevents/Window {
public fun toString ()Ljava/lang/String;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Window$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
- public static final field INSTANCE Lcom/shopify/checkoutsheetkit/pixelevents/Window$$serializer;
+public final class com/shopify/checkoutkit/pixelevents/Window$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
+ public static final field INSTANCE Lcom/shopify/checkoutkit/pixelevents/Window$$serializer;
public fun childSerializers ()[Lkotlinx/serialization/KSerializer;
- public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutsheetkit/pixelevents/Window;
+ public fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lcom/shopify/checkoutkit/pixelevents/Window;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
- public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutsheetkit/pixelevents/Window;)V
+ public fun serialize (Lkotlinx/serialization/encoding/Encoder;Lcom/shopify/checkoutkit/pixelevents/Window;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
}
-public final class com/shopify/checkoutsheetkit/pixelevents/Window$Companion {
+public final class com/shopify/checkoutkit/pixelevents/Window$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
diff --git a/android/lib/build.gradle b/android/lib/build.gradle
index 4e03d430..13b42c7e 100644
--- a/android/lib/build.gradle
+++ b/android/lib/build.gradle
@@ -16,7 +16,7 @@ def resolveEnvVarValue(name, defaultValue) {
return rawValue ? rawValue : defaultValue
}
-def versionName = resolveEnvVarValue("CHECKOUT_SHEET_KIT_VERSION", "3.6.0")
+def versionName = resolveEnvVarValue("CHECKOUT_KIT_VERSION", "3.6.0")
ext {
app_compat_version = '1.7.1'
@@ -36,7 +36,7 @@ ext {
}
android {
- namespace = 'com.shopify.checkoutsheetkit'
+ namespace = 'com.shopify.checkoutkit'
compileSdk = 36
defaultConfig {
@@ -147,11 +147,11 @@ project.afterEvaluate {
publications {
release(MavenPublication) {
pom {
- name = "CheckoutSheetKit"
- description = "Shopify's Checkout Sheet Kit makes it simple to render checkouts inside your mobile app."
- url = "https://github.com/Shopify/checkout-sheet-kit-android"
+ name = "CheckoutKit"
+ description = "Shopify's Checkout Kit makes it simple to render checkouts inside your mobile app."
+ url = "https://github.com/Shopify/checkout-kit-android"
groupId = "com.shopify"
- artifactId = "checkout-sheet-kit"
+ artifactId = "checkout-kit"
version = versionName
licenses {
@@ -168,9 +168,9 @@ project.afterEvaluate {
}
scm {
- connection = "https://github.com/Shopify/checkout-sheet-kit-android.git"
- developerConnection = "https://github.com/Shopify/checkout-sheet-kit-android.git"
- url = "https://github.com/Shopify/checkout-sheet-kit-android.git"
+ connection = "https://github.com/Shopify/checkout-kit-android.git"
+ developerConnection = "https://github.com/Shopify/checkout-kit-android.git"
+ url = "https://github.com/Shopify/checkout-kit-android.git"
}
}
diff --git a/android/lib/proguard-rules.pro b/android/lib/proguard-rules.pro
index 116e7e16..2b2af774 100644
--- a/android/lib/proguard-rules.pro
+++ b/android/lib/proguard-rules.pro
@@ -20,4 +20,4 @@
# hide the original source file name.
#-renamesourcefileattribute SourceFile
--keep class com.shopify.checkoutsheetkit.** { *; }
+-keep class com.shopify.checkoutkit.** { *; }
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/BaseWebView.kt b/android/lib/src/main/java/com/shopify/checkoutkit/BaseWebView.kt
similarity index 95%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/BaseWebView.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/BaseWebView.kt
index f4ee1129..e84fc8c4 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/BaseWebView.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/BaseWebView.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.annotation.SuppressLint
import android.content.Context
@@ -44,7 +44,7 @@ import android.webkit.WebView
import android.webkit.WebViewClient
import androidx.webkit.WebSettingsCompat
import androidx.webkit.WebViewFeature
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit.log
+import com.shopify.checkoutkit.ShopifyCheckoutKit.log
import java.net.HttpURLConnection.HTTP_GONE
@SuppressLint("SetJavaScriptEnabled")
@@ -125,9 +125,9 @@ internal abstract class BaseWebView(context: Context, attributeSet: AttributeSet
private fun isOnConfirmationPage(): Boolean = url?.let(Uri::parse).isConfirmationPage()
internal fun userAgentSuffix(): String {
- val theme = ShopifyCheckoutSheetKit.configuration.colorScheme.id
- val version = ShopifyCheckoutSheetKit.version.split("-").first()
- val platform = ShopifyCheckoutSheetKit.configuration.platform
+ val theme = ShopifyCheckoutKit.configuration.colorScheme.id
+ val version = ShopifyCheckoutKit.version.split("-").first()
+ val platform = ShopifyCheckoutKit.configuration.platform
val platformSuffix = if (platform != null) " ${platform.displayName}" else ""
val suffix = "ShopifyCheckoutSDK/$version ($cspSchema;$theme;$variant)$platformSuffix"
log.d(LOG_TAG, "Setting User-Agent suffix $suffix")
@@ -148,9 +148,9 @@ internal abstract class BaseWebView(context: Context, attributeSet: AttributeSet
log.d(LOG_TAG, "onRenderProcessGone called, calling onCheckoutFailedWithError")
val eventProcessor = getEventProcessor()
eventProcessor.onCheckoutViewFailedWithError(
- CheckoutSheetKitException(
+ CheckoutKitException(
errorDescription = "Render process gone.",
- errorCode = CheckoutSheetKitException.RENDER_PROCESS_GONE,
+ errorCode = CheckoutKitException.RENDER_PROCESS_GONE,
isRecoverable = recoverErrors,
)
)
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutBridge.kt b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutBridge.kt
similarity index 89%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutBridge.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/CheckoutBridge.kt
index 992b994f..9bec0040 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutBridge.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutBridge.kt
@@ -20,18 +20,18 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.webkit.JavascriptInterface
import android.webkit.WebView
-import com.shopify.checkoutsheetkit.CheckoutBridge.CheckoutWebOperation.COMPLETED
-import com.shopify.checkoutsheetkit.CheckoutBridge.CheckoutWebOperation.ERROR
-import com.shopify.checkoutsheetkit.CheckoutBridge.CheckoutWebOperation.MODAL
-import com.shopify.checkoutsheetkit.CheckoutBridge.CheckoutWebOperation.WEB_PIXELS
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit.log
-import com.shopify.checkoutsheetkit.errorevents.CheckoutErrorDecoder
-import com.shopify.checkoutsheetkit.lifecycleevents.CheckoutCompletedEventDecoder
-import com.shopify.checkoutsheetkit.pixelevents.PixelEventDecoder
+import com.shopify.checkoutkit.CheckoutBridge.CheckoutWebOperation.COMPLETED
+import com.shopify.checkoutkit.CheckoutBridge.CheckoutWebOperation.ERROR
+import com.shopify.checkoutkit.CheckoutBridge.CheckoutWebOperation.MODAL
+import com.shopify.checkoutkit.CheckoutBridge.CheckoutWebOperation.WEB_PIXELS
+import com.shopify.checkoutkit.ShopifyCheckoutKit.log
+import com.shopify.checkoutkit.errorevents.CheckoutErrorDecoder
+import com.shopify.checkoutkit.lifecycleevents.CheckoutCompletedEventDecoder
+import com.shopify.checkoutkit.pixelevents.PixelEventDecoder
import kotlinx.serialization.Serializable
import kotlinx.serialization.encodeToString
import kotlinx.serialization.json.Json
@@ -127,9 +127,9 @@ internal class CheckoutBridge(
log.d(LOG_TAG, "Failed to decode message with error: $e. Calling onCheckoutFailedWithError")
onMainThread {
eventProcessor.onCheckoutViewFailedWithError(
- CheckoutSheetKitException(
+ CheckoutKitException(
errorDescription = "Error decoding message from checkout.",
- errorCode = CheckoutSheetKitException.ERROR_RECEIVING_MESSAGE_FROM_CHECKOUT,
+ errorCode = CheckoutKitException.ERROR_RECEIVING_MESSAGE_FROM_CHECKOUT,
isRecoverable = true,
),
)
@@ -158,9 +158,9 @@ internal class CheckoutBridge(
log.d(LOG_TAG, "Failed to send message to checkout, invoking onCheckoutViewFailedWithError")
onMainThread {
eventProcessor.onCheckoutViewFailedWithError(
- CheckoutSheetKitException(
+ CheckoutKitException(
errorDescription = "Failed to send '${operation.key}' message to checkout, some features may not work.",
- errorCode = CheckoutSheetKitException.ERROR_SENDING_MESSAGE_TO_CHECKOUT,
+ errorCode = CheckoutKitException.ERROR_SENDING_MESSAGE_TO_CHECKOUT,
isRecoverable = true,
)
)
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutDialog.kt b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutDialog.kt
similarity index 93%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutDialog.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/CheckoutDialog.kt
index 801f9bf9..08cfda5f 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutDialog.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutDialog.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.content.Context
import android.content.res.ColorStateList
@@ -49,7 +49,7 @@ import androidx.appcompat.widget.Toolbar
import androidx.core.graphics.drawable.DrawableCompat
import androidx.core.graphics.drawable.toDrawable
import androidx.core.view.children
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit.log
+import com.shopify.checkoutkit.ShopifyCheckoutKit.log
internal class CheckoutDialog(
private val checkoutUrl: String,
@@ -61,7 +61,7 @@ internal class CheckoutDialog(
private val backNavigationCallback = object : OnBackPressedCallback(enabled = true) {
override fun handleOnBackPressed() {
- val webView = findViewById(R.id.checkoutSdkContainer)
+ val webView = findViewById(R.id.checkoutKitContainer)
?.children?.firstOrNull { it is BaseWebView } as? BaseWebView
if (webView?.handleBackPressed() != true) {
log.d(LOG_TAG, "Back press not handled by WebView, cancelling dialog.")
@@ -92,14 +92,14 @@ internal class CheckoutDialog(
log.d(LOG_TAG, "Setting event processor on WebView.")
checkoutWebView.setEventProcessor(eventProcessor())
- val colorScheme = ShopifyCheckoutSheetKit.configuration.colorScheme
+ val colorScheme = ShopifyCheckoutKit.configuration.colorScheme
log.d(LOG_TAG, "Configured colorScheme $colorScheme")
- findViewById(R.id.checkoutSdkHeader).apply {
+ findViewById(R.id.checkoutKitHeader).apply {
log.d(LOG_TAG, "Applying configured header colors and inflating menu.")
setBackgroundColor(colorScheme.headerBackgroundColor())
setTitleTextColor(colorScheme.headerFontColor())
inflateMenu(R.menu.checkout_menu)
- menu.findItem(R.id.checkoutSdkCloseBtn).apply { setupCloseButton(colorScheme) }
+ menu.findItem(R.id.checkoutKitCloseBtn).apply { setupCloseButton(colorScheme) }
}
findViewById(R.id.progressBar).apply {
@@ -156,7 +156,7 @@ internal class CheckoutDialog(
}
private fun removeWebViewFromContainer() {
- findViewById(R.id.checkoutSdkContainer).apply {
+ findViewById(R.id.checkoutKitContainer).apply {
this.children.firstOrNull { it is WebView }?.let { webView ->
log.d(LOG_TAG, "Removing WebView from container.")
this.removeView(webView)
@@ -168,7 +168,7 @@ internal class CheckoutDialog(
colorScheme: ColorScheme,
checkoutWebView: BaseWebView,
) {
- findViewById(R.id.checkoutSdkContainer).apply {
+ findViewById(R.id.checkoutKitContainer).apply {
log.d(LOG_TAG, "Found parent view, setting its colors and layout params.")
setBackgroundColor(colorScheme.webViewBackgroundColor())
val layoutParams = RelativeLayout.LayoutParams(WRAP_CONTENT, MATCH_PARENT)
@@ -182,7 +182,7 @@ internal class CheckoutDialog(
private fun toggleHeader(modalVisible: Boolean) {
Handler(Looper.getMainLooper()).post {
log.d(LOG_TAG, "Toggling header based on modal visibility state. Modal visible: $modalVisible.")
- findViewById(R.id.checkoutSdkHeader).visibility = if (modalVisible) GONE else VISIBLE
+ findViewById(R.id.checkoutKitHeader).visibility = if (modalVisible) GONE else VISIBLE
findViewById(R.id.progressBar).visibility = if (modalVisible) GONE else INVISIBLE
}
}
@@ -208,7 +208,7 @@ internal class CheckoutDialog(
checkoutEventProcessor.onCheckoutFailed(exception)
val isOneTimeUseUrl = this.checkoutUrl.isOneTimeUse()
- val shouldRecover = ShopifyCheckoutSheetKit.configuration.errorRecovery.shouldRecoverFromError(exception)
+ val shouldRecover = ShopifyCheckoutKit.configuration.errorRecovery.shouldRecoverFromError(exception)
val isWithinRetryLimit = recoveryAttemptCount < MAX_RECOVERY_ATTEMPTS
log.d(
@@ -229,11 +229,11 @@ internal class CheckoutDialog(
removeWebViewFromContainer()
log.d(LOG_TAG, "Invoking pre-recovery actions.")
- ShopifyCheckoutSheetKit.configuration.errorRecovery.preRecoveryActions(exception, checkoutUrl)
+ ShopifyCheckoutKit.configuration.errorRecovery.preRecoveryActions(exception, checkoutUrl)
log.d(LOG_TAG, "Adding fallback WebView to container.")
addWebViewToContainer(
- ShopifyCheckoutSheetKit.configuration.colorScheme,
+ ShopifyCheckoutKit.configuration.colorScheme,
FallbackWebView(context).apply {
setEventProcessor(eventProcessor())
loadUrl(checkoutUrl)
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutEventProcessor.kt b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutEventProcessor.kt
similarity index 97%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutEventProcessor.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/CheckoutEventProcessor.kt
index c7039e4a..04c1696d 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutEventProcessor.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutEventProcessor.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.annotation.SuppressLint
import android.content.Context
@@ -31,8 +31,8 @@ import android.webkit.PermissionRequest
import android.webkit.ValueCallback
import android.webkit.WebChromeClient
import android.webkit.WebView
-import com.shopify.checkoutsheetkit.lifecycleevents.CheckoutCompletedEvent
-import com.shopify.checkoutsheetkit.pixelevents.PixelEvent
+import com.shopify.checkoutkit.lifecycleevents.CheckoutCompletedEvent
+import com.shopify.checkoutkit.pixelevents.PixelEvent
/**
* Interface to implement to allow responding to lifecycle events in checkout.
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutException.kt b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutException.kt
similarity index 93%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutException.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/CheckoutException.kt
index 21645a0e..26c6d961 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutException.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutException.kt
@@ -20,12 +20,12 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import kotlinx.serialization.Serializable
/**
- * Superclass for the Shopify Checkout Sheet Kit exceptions
+ * Superclass for the Shopify Checkout Kit exceptions
*/
@Serializable
public abstract class CheckoutException(
@@ -35,10 +35,10 @@ public abstract class CheckoutException(
) : Exception(errorDescription)
/**
- * Issued when an internal error occurs within Shopify Checkout Sheet Kit. If the issue persists, it is recommended to open a bug report
- * in https://github.com/Shopify/checkout-sheet-kit-android
+ * Issued when an internal error occurs within Shopify Checkout Kit. If the issue persists, it is recommended to open a bug report
+ * in https://github.com/Shopify/checkout-kit-android
*/
-public class CheckoutSheetKitException(
+public class CheckoutKitException(
errorDescription: String,
errorCode: String = UNKNOWN,
isRecoverable: Boolean,
@@ -53,7 +53,7 @@ public class CheckoutSheetKitException(
/**
* Issued when checkout has encountered a unrecoverable error (for example server side error).
- * if the issue persists, it is recommended to open a bug report in https://github.com/Shopify/checkout-sheet-kit-android
+ * if the issue persists, it is recommended to open a bug report in https://github.com/Shopify/checkout-kit-android
*/
public open class CheckoutUnavailableException @JvmOverloads constructor(
errorDescription: String? = null,
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebView.kt b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebView.kt
similarity index 97%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebView.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebView.kt
index 07795dc0..ed2c7a5f 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebView.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebView.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.content.Context
import android.graphics.Bitmap
@@ -31,8 +31,8 @@ import android.util.AttributeSet
import android.webkit.WebResourceRequest
import android.webkit.WebView
import androidx.activity.ComponentActivity
-import com.shopify.checkoutsheetkit.InstrumentationType.histogram
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit.log
+import com.shopify.checkoutkit.InstrumentationType.histogram
+import com.shopify.checkoutkit.ShopifyCheckoutKit.log
import java.util.concurrent.CountDownLatch
import kotlin.math.abs
import kotlin.time.Duration.Companion.minutes
@@ -226,7 +226,7 @@ internal class CheckoutWebView(context: Context, attributeSet: AttributeSet? = n
activity: ComponentActivity,
isPreload: Boolean,
): CheckoutWebView {
- val preloadingEnabled = ShopifyCheckoutSheetKit.configuration.preloading.enabled
+ val preloadingEnabled = ShopifyCheckoutKit.configuration.preloading.enabled
log.d(
LOG_TAG,
"Fetch view called for url $url. Is preload: $isPreload. Preloading enabled: $preloadingEnabled."
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebViewContainer.kt b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebViewContainer.kt
similarity index 96%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebViewContainer.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebViewContainer.kt
index 4dd0f9ba..a17e2b2c 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebViewContainer.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebViewContainer.kt
@@ -20,13 +20,13 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.content.Context
import android.util.AttributeSet
import android.view.View
import android.widget.RelativeLayout
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit.log
+import com.shopify.checkoutkit.ShopifyCheckoutKit.log
internal class CheckoutWebViewContainer @JvmOverloads constructor(
context: Context,
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebViewEventProcessor.kt b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebViewEventProcessor.kt
similarity index 92%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebViewEventProcessor.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebViewEventProcessor.kt
index b9b6cb83..ecda6e7b 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutWebViewEventProcessor.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/CheckoutWebViewEventProcessor.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.net.Uri
import android.view.View.INVISIBLE
@@ -30,13 +30,13 @@ import android.webkit.PermissionRequest
import android.webkit.ValueCallback
import android.webkit.WebChromeClient.FileChooserParams
import android.webkit.WebView
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit.log
-import com.shopify.checkoutsheetkit.lifecycleevents.CheckoutCompletedEvent
-import com.shopify.checkoutsheetkit.pixelevents.PixelEvent
+import com.shopify.checkoutkit.ShopifyCheckoutKit.log
+import com.shopify.checkoutkit.lifecycleevents.CheckoutCompletedEvent
+import com.shopify.checkoutkit.pixelevents.PixelEvent
/**
* Event processor that can handle events internally, delegate to the CheckoutEventProcessor
- * passed into ShopifyCheckoutSheetKit.present(), or preprocess arguments and then delegate
+ * passed into ShopifyCheckoutKit.present(), or preprocess arguments and then delegate
*/
internal class CheckoutWebViewEventProcessor(
private val eventProcessor: CheckoutEventProcessor,
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ColorScheme.kt b/android/lib/src/main/java/com/shopify/checkoutkit/ColorScheme.kt
similarity index 99%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/ColorScheme.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/ColorScheme.kt
index b97f91cb..9cb325a7 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ColorScheme.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/ColorScheme.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.content.Context
import androidx.annotation.ColorInt
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/Configuration.kt b/android/lib/src/main/java/com/shopify/checkoutkit/Configuration.kt
similarity index 96%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/Configuration.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/Configuration.kt
index a2fd257d..cb71c33b 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/Configuration.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/Configuration.kt
@@ -20,10 +20,10 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
/**
- * Configuration for Shopify Checkout Sheet Kit.
+ * Configuration for Shopify Checkout Kit.
*
* Allows:
* - Enabling/disabling preloading,
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ConfigurationUpdater.kt b/android/lib/src/main/java/com/shopify/checkoutkit/ConfigurationUpdater.kt
similarity index 97%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/ConfigurationUpdater.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/ConfigurationUpdater.kt
index 1eb932c7..15c5fa82 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ConfigurationUpdater.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/ConfigurationUpdater.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
/**
* Interface used to update the SDK configuration.
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/FallbackWebView.kt b/android/lib/src/main/java/com/shopify/checkoutkit/FallbackWebView.kt
similarity index 94%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/FallbackWebView.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/FallbackWebView.kt
index 5f256e67..aa32969b 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/FallbackWebView.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/FallbackWebView.kt
@@ -20,15 +20,15 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.content.Context
import android.net.Uri
import android.util.AttributeSet
import android.webkit.WebView
import androidx.core.net.toUri
-import com.shopify.checkoutsheetkit.ShopifyCheckoutSheetKit.log
-import com.shopify.checkoutsheetkit.lifecycleevents.emptyCompletedEvent
+import com.shopify.checkoutkit.ShopifyCheckoutKit.log
+import com.shopify.checkoutkit.lifecycleevents.emptyCompletedEvent
internal class FallbackWebView(context: Context, attributeSet: AttributeSet? = null) :
BaseWebView(context, attributeSet) {
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/LogWrapper.kt b/android/lib/src/main/java/com/shopify/checkoutkit/LogWrapper.kt
similarity index 91%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/LogWrapper.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/LogWrapper.kt
index 061e4f81..9da2a242 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/LogWrapper.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/LogWrapper.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.util.Log
@@ -29,13 +29,13 @@ import android.util.Log
*/
public class LogWrapper {
public fun d(tag: String, msg: String) {
- if (ShopifyCheckoutSheetKit.configuration.logLevel == LogLevel.DEBUG) {
+ if (ShopifyCheckoutKit.configuration.logLevel == LogLevel.DEBUG) {
Log.d(tag, msg)
}
}
public fun w(tag: String, msg: String) {
- if (listOf(LogLevel.DEBUG, LogLevel.WARN).contains(ShopifyCheckoutSheetKit.configuration.logLevel)) {
+ if (listOf(LogLevel.DEBUG, LogLevel.WARN).contains(ShopifyCheckoutKit.configuration.logLevel)) {
Log.w(tag, msg)
}
}
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ShopifyCheckoutSheetKit.kt b/android/lib/src/main/java/com/shopify/checkoutkit/ShopifyCheckoutKit.kt
similarity index 75%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/ShopifyCheckoutSheetKit.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/ShopifyCheckoutKit.kt
index 7ebab88c..4a602c34 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ShopifyCheckoutSheetKit.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/ShopifyCheckoutKit.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import androidx.activity.ComponentActivity
import androidx.lifecycle.DefaultLifecycleObserver
@@ -29,25 +29,25 @@ import androidx.lifecycle.LifecycleOwner
/**
* Entrypoint to the library, allows configuring, preloading, and presenting Shopify checkouts.
*/
-public object ShopifyCheckoutSheetKit {
+public object ShopifyCheckoutKit {
internal val configuration = Configuration()
internal val log = LogWrapper()
/**
- * Returns the current version of ShopifyCheckoutSheetKit.
+ * Returns the current version of ShopifyCheckoutKit.
* @return the current version
*/
public const val version: String = BuildConfig.SDK_VERSION
/**
- * Returns the currently applied ShopifyCheckoutSheetKit configuration.
+ * Returns the currently applied ShopifyCheckoutKit configuration.
* Note: configuration changes should be made through the configure function.
*
* @return the currently applied configuration
- * @see ShopifyCheckoutSheetKit.configure(ConfigurationUpdater)
+ * @see ShopifyCheckoutKit.configure(ConfigurationUpdater)
*/
@JvmStatic
public fun getConfiguration(): Configuration {
@@ -55,11 +55,11 @@ public object ShopifyCheckoutSheetKit {
}
/**
- * Allows configuring ShopifyCheckoutSheetKit.
+ * Allows configuring ShopifyCheckoutKit.
*
* Current configuration options are for enabling and disabling preloading, and for setting the checkout color scheme.
* Kotlin example:
- * {@code ShopifyCheckoutSheetKit.configure { it.preloading = Preloading(enabled = enabled) }}
+ * {@code ShopifyCheckoutKit.configure { it.preloading = Preloading(enabled = enabled) }}
*
* @param setter a function that modifies the configuration object
* @see Configuration
@@ -75,7 +75,7 @@ public object ShopifyCheckoutSheetKit {
*/
@JvmStatic
public fun invalidate() {
- log.d("ShopifyCheckoutSheetKit", "Invalidate called, marking cache entry stale.")
+ log.d("ShopifyCheckoutKit", "Invalidate called, marking cache entry stale.")
CheckoutWebView.markCacheEntryStale()
}
@@ -83,7 +83,7 @@ public object ShopifyCheckoutSheetKit {
* Preloads a Shopify checkout in the background.
*
* Preloading checkout is fully optional, but allows reducing the time taken between calling
- * {@link ShopifyCheckoutSheetKit#present(String, ComponentActivity, CheckoutEventProcessor)} and having a fully interactive checkout.
+ * {@link ShopifyCheckoutKit#present(String, ComponentActivity, CheckoutEventProcessor)} and having a fully interactive checkout.
* Note: Preload must be called on all cart changes to avoid stale checkouts being presented.
* Preloaded checkouts also have a TTL of 5 minutes, after checkout will be re-loaded on calling present.
*
@@ -92,23 +92,23 @@ public object ShopifyCheckoutSheetKit {
*/
@JvmStatic
public fun preload(checkoutUrl: String, context: ComponentActivity) {
- log.d("ShopifyCheckoutSheetKit", "Preload called. Preloading enabled ${configuration.preloading.enabled}.")
+ log.d("ShopifyCheckoutKit", "Preload called. Preloading enabled ${configuration.preloading.enabled}.")
if (!configuration.preloading.enabled) return
val cacheEntry = CheckoutWebView.cacheEntry
if (cacheEntry?.view != null && cacheEntry.view.isInViewHierarchy()) {
if (cacheEntry.key != checkoutUrl) {
log.d(
- "ShopifyCheckoutSheetKit",
+ "ShopifyCheckoutKit",
"View already cached and in view hierarchy, but with different url, marking stale."
)
CheckoutWebView.markCacheEntryStale()
}
- log.d("ShopifyCheckoutSheetKit", "Calling loadCheckout on existing view with url $checkoutUrl.")
+ log.d("ShopifyCheckoutKit", "Calling loadCheckout on existing view with url $checkoutUrl.")
cacheEntry.view.loadCheckout(checkoutUrl, false)
} else {
- log.d("ShopifyCheckoutSheetKit", "Fetching cacheable WebView.")
+ log.d("ShopifyCheckoutKit", "Fetching cacheable WebView.")
CheckoutWebView.markCacheEntryStale()
CheckoutWebView.cacheableCheckoutView(
url = checkoutUrl,
@@ -125,32 +125,32 @@ public object ShopifyCheckoutSheetKit {
* @param context The context the checkout is being presented from
* @param checkoutEventProcessor provides callbacks to allow clients to listen for and respond to checkout lifecycle events such as
* (failure, completion, cancellation, external link clicks).
- * @return An instance of [CheckoutSheetKitDialog] if the dialog was successfully created and displayed.
+ * @return An instance of [CheckoutKitDialog] if the dialog was successfully created and displayed.
*/
@JvmStatic
public fun present(
checkoutUrl: String,
context: ComponentActivity,
checkoutEventProcessor: T
- ): CheckoutSheetKitDialog? {
- log.d("ShopifyCheckoutSheetKit", "Present called with checkoutUrl $checkoutUrl.")
+ ): CheckoutKitDialog? {
+ log.d("ShopifyCheckoutKit", "Present called with checkoutUrl $checkoutUrl.")
if (context.isDestroyed || context.isFinishing) {
- log.d("ShopifyCheckoutSheetKit", "Context is destroyed or finishing, returning null.")
+ log.d("ShopifyCheckoutKit", "Context is destroyed or finishing, returning null.")
return null
}
- log.d("ShopifyCheckoutSheetKit", "Constructing Dialog")
+ log.d("ShopifyCheckoutKit", "Constructing Dialog")
val dialog = CheckoutDialog(checkoutUrl, checkoutEventProcessor, context)
context.lifecycle.addObserver(object : DefaultLifecycleObserver {
override fun onDestroy(owner: LifecycleOwner) {
- log.d("ShopifyCheckoutSheetKit", "Context is being destroyed, dismissing dialog.")
+ log.d("ShopifyCheckoutKit", "Context is being destroyed, dismissing dialog.")
dialog.dismiss()
super.onDestroy(owner)
}
})
- log.d("ShopifyCheckoutSheetKit", "Starting Dialog.")
+ log.d("ShopifyCheckoutKit", "Starting Dialog.")
dialog.start(context)
- return CheckoutSheetKitDialog { dialog.dismiss() }
+ return CheckoutKitDialog { dialog.dismiss() }
}
}
@@ -158,7 +158,7 @@ public object ShopifyCheckoutSheetKit {
* A checkout sheet dialog. Use the [dismiss] method to dismiss the presented dialog
*/
@FunctionalInterface
-public fun interface CheckoutSheetKitDialog {
+public fun interface CheckoutKitDialog {
/**
* Dismisses the checkout sheet dialog.
*/
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ThreadExtensions.kt b/android/lib/src/main/java/com/shopify/checkoutkit/ThreadExtensions.kt
similarity index 97%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/ThreadExtensions.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/ThreadExtensions.kt
index 9f1e71f7..66e27b86 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/ThreadExtensions.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/ThreadExtensions.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.os.Handler
import android.os.Looper
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/UriExtensions.kt b/android/lib/src/main/java/com/shopify/checkoutkit/UriExtensions.kt
similarity index 98%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/UriExtensions.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/UriExtensions.kt
index 1ec4d458..f8c69854 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/UriExtensions.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/UriExtensions.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit
+package com.shopify.checkoutkit
import android.net.Uri
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorDecoder.kt b/android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorDecoder.kt
similarity index 90%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorDecoder.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorDecoder.kt
index 438d0023..d22b4ad7 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorDecoder.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorDecoder.kt
@@ -20,14 +20,14 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit.errorevents
+package com.shopify.checkoutkit.errorevents
-import com.shopify.checkoutsheetkit.CheckoutException
-import com.shopify.checkoutsheetkit.CheckoutExpiredException
-import com.shopify.checkoutsheetkit.ClientException
-import com.shopify.checkoutsheetkit.ConfigurationException
-import com.shopify.checkoutsheetkit.LogWrapper
-import com.shopify.checkoutsheetkit.WebToSdkEvent
+import com.shopify.checkoutkit.CheckoutException
+import com.shopify.checkoutkit.CheckoutExpiredException
+import com.shopify.checkoutkit.ClientException
+import com.shopify.checkoutkit.ConfigurationException
+import com.shopify.checkoutkit.LogWrapper
+import com.shopify.checkoutkit.WebToSdkEvent
import kotlinx.serialization.json.Json
internal class CheckoutErrorDecoder @JvmOverloads constructor(
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorGroup.kt b/android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorGroup.kt
similarity index 98%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorGroup.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorGroup.kt
index 7e038fee..f25b7e4f 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorGroup.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorGroup.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit.errorevents
+package com.shopify.checkoutkit.errorevents
import kotlinx.serialization.KSerializer
import kotlinx.serialization.Serializable
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorPayload.kt b/android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorPayload.kt
similarity index 96%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorPayload.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorPayload.kt
index eaa5cc35..4d28b4df 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/errorevents/CheckoutErrorPayload.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/errorevents/CheckoutErrorPayload.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit.errorevents
+package com.shopify.checkoutkit.errorevents
import kotlinx.serialization.Serializable
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEventDecoder.kt b/android/lib/src/main/java/com/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEventDecoder.kt
similarity index 92%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEventDecoder.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEventDecoder.kt
index 03b67942..4a40360c 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/lifecycleevents/CheckoutCompletedEventDecoder.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/lifecycleevents/CheckoutCompletedEventDecoder.kt
@@ -20,10 +20,10 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit.lifecycleevents
+package com.shopify.checkoutkit.lifecycleevents
-import com.shopify.checkoutsheetkit.LogWrapper
-import com.shopify.checkoutsheetkit.WebToSdkEvent
+import com.shopify.checkoutkit.LogWrapper
+import com.shopify.checkoutkit.WebToSdkEvent
import kotlinx.serialization.Serializable
import kotlinx.serialization.json.Json
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/lifecycleevents/CompletedEvent.kt b/android/lib/src/main/java/com/shopify/checkoutkit/lifecycleevents/CompletedEvent.kt
similarity index 97%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/lifecycleevents/CompletedEvent.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/lifecycleevents/CompletedEvent.kt
index d31f098a..f78a6b7f 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/lifecycleevents/CompletedEvent.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/lifecycleevents/CompletedEvent.kt
@@ -20,9 +20,9 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit.lifecycleevents
+package com.shopify.checkoutkit.lifecycleevents
-import com.shopify.checkoutsheetkit.pixelevents.MoneyV2
+import com.shopify.checkoutkit.pixelevents.MoneyV2
import kotlinx.serialization.Serializable
@Serializable
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/package-info.java b/android/lib/src/main/java/com/shopify/checkoutkit/package-info.java
similarity index 55%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/package-info.java
rename to android/lib/src/main/java/com/shopify/checkoutkit/package-info.java
index 9c267d1b..93089802 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/package-info.java
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/package-info.java
@@ -1,4 +1,4 @@
/**
- * Package containing all of the classes that comprise Shopify Checkout Sheet Kit.
+ * Package containing all of the classes that comprise Shopify Checkout Kit.
*/
-package com.shopify.checkoutsheetkit;
+package com.shopify.checkoutkit;
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/pixelevents/PixelEvent.kt b/android/lib/src/main/java/com/shopify/checkoutkit/pixelevents/PixelEvent.kt
similarity index 99%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/pixelevents/PixelEvent.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/pixelevents/PixelEvent.kt
index efe990cd..10ddbf9a 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/pixelevents/PixelEvent.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/pixelevents/PixelEvent.kt
@@ -20,7 +20,7 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit.pixelevents
+package com.shopify.checkoutkit.pixelevents
import kotlinx.serialization.KSerializer
import kotlinx.serialization.SerialName
diff --git a/android/lib/src/main/java/com/shopify/checkoutsheetkit/pixelevents/PixelEventDecoder.kt b/android/lib/src/main/java/com/shopify/checkoutkit/pixelevents/PixelEventDecoder.kt
similarity index 93%
rename from android/lib/src/main/java/com/shopify/checkoutsheetkit/pixelevents/PixelEventDecoder.kt
rename to android/lib/src/main/java/com/shopify/checkoutkit/pixelevents/PixelEventDecoder.kt
index 5b046a1f..9b40a147 100644
--- a/android/lib/src/main/java/com/shopify/checkoutsheetkit/pixelevents/PixelEventDecoder.kt
+++ b/android/lib/src/main/java/com/shopify/checkoutkit/pixelevents/PixelEventDecoder.kt
@@ -20,10 +20,10 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-package com.shopify.checkoutsheetkit.pixelevents
+package com.shopify.checkoutkit.pixelevents
-import com.shopify.checkoutsheetkit.LogWrapper
-import com.shopify.checkoutsheetkit.WebToSdkEvent
+import com.shopify.checkoutkit.LogWrapper
+import com.shopify.checkoutkit.WebToSdkEvent
import kotlinx.serialization.json.Json
import kotlinx.serialization.json.decodeFromJsonElement
import kotlinx.serialization.json.jsonPrimitive
diff --git a/android/lib/src/main/res/layout/dialog_checkout.xml b/android/lib/src/main/res/layout/dialog_checkout.xml
index 9264e3b8..75766c1b 100644
--- a/android/lib/src/main/res/layout/dialog_checkout.xml
+++ b/android/lib/src/main/res/layout/dialog_checkout.xml
@@ -5,7 +5,7 @@
android:background="@android:color/transparent">
-
-
+
diff --git a/android/lib/src/main/res/menu/checkout_menu.xml b/android/lib/src/main/res/menu/checkout_menu.xml
index 008b7053..c718ec82 100644
--- a/android/lib/src/main/res/menu/checkout_menu.xml
+++ b/android/lib/src/main/res/menu/checkout_menu.xml
@@ -1,7 +1,7 @@