@docs: remove invalid @property tags

This commit is contained in:
Rsedp8 2025-05-24 18:43:16 +02:00
parent 840b15a514
commit ebf450f12d

View file

@ -10,18 +10,15 @@ import kotlinx.parcelize.Parcelize
@Parcelize @Parcelize
data class UploadMediaDetail( data class UploadMediaDetail(
/** /**
* The language code ie. "en" or "fr". * The language code, e.g., "en" or "fr".
* @property languageCode The language code ie. "en" or "fr".
*/ */
var languageCode: String? = null, var languageCode: String? = null,
/** /**
* The description text for the item being uploaded. * The description text for the item being uploaded.
* @property descriptionText The description text.
*/ */
var descriptionText: String? = "", var descriptionText: String? = "",
/** /**
* The caption text for the item being uploaded. * The caption text for the item being uploaded.
* @property captionText The caption text.
*/ */
var captionText: String = "", var captionText: String = "",
) : Parcelable { ) : Parcelable {