All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ecwid.apiclient.v3.config.ApiCredentials.kt Maven / Gradle / Ivy

package com.ecwid.apiclient.v3.config

sealed class ApiCredentials

data class ApiStoreCredentials(
	val storeId: Int,
	val apiToken: String
) : ApiCredentials()

data class ApiAppCredentials(
	val clientId: String,
	val clientSecret: String
) : ApiCredentials()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy