Skip to content

Commit

Permalink
add missing properties on ConsentStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Sep 12, 2024
1 parent 05a1501 commit c832447
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ import kotlinx.serialization.Serializable
data class ConsentStatus (
val rejectedAny: Boolean? = null,
val rejectedLI: Boolean? = null,
val rejectedAll: Boolean? = null,
val consentedAll: Boolean? = null,
val hasConsentData: Boolean? = null,
val consentedToAll: Boolean? = null,
val consentedToAny: Boolean? = null,
val hasConsentData: Boolean? = null,
val vendorListAdditions: Boolean? = null,
val legalBasisChanges: Boolean? = null,
val granularStatus: ConsentStatusGranularStatus? = null
) {
@Serializable
Expand All @@ -18,6 +22,10 @@ data class ConsentStatus (
val purposeConsent: String? = null,
val purposeLegInt: String? = null,
val previousOptInAll: Boolean? = null,
val defaultConsent: Boolean? = null
val defaultConsent: Boolean? = null,
val sellStatus: Boolean? = null,
val shareStatus: Boolean? = null,
val sensitiveDataStatus: Boolean? = null,
val gpcStatus: Boolean? = null
)
}

0 comments on commit c832447

Please sign in to comment.