Company

@Serializable
data class Company(val id: Int, val logoPath: String?, val name: String) : Serializable(source)

Data class representing a company.

Constructors

Link copied to clipboard
constructor(id: Int, logoPath: String?, name: String)

Properties

Link copied to clipboard
val id: Int

The unique identifier of the company.

Link copied to clipboard
@SerializedName(value = "logo_path")
val logoPath: String?

The path to the company's logo (optional).

Link copied to clipboard

The name of the company.