![JAR search and dependency download from the Maven repository](/logo.png)
com.avito.android.providers.RemoteAvitoCodeOwner.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-ownership Show documentation
Show all versions of code-ownership Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
The newest version!
package com.avito.android.providers
import com.avito.android.model.Owner
import com.avito.android.model.network.OwnerType
import com.avito.capitalize
internal class RemoteAvitoCodeOwner(
val type: OwnerType,
val name: String,
val id: String,
val parent: String?
) : Owner {
override fun toString() =
"${type.key.capitalize()} ${name}${if (parent != null) " (Юнит $parent)" else ""}"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy