package com.usercentrics.reactnative.extensions import com.facebook.react.bridge.WritableMap import com.usercentrics.ccpa.CCPAData internal fun CCPAData.serialize(): WritableMap { return mapOf( "uspString" to uspString, "version" to version, "noticeGiven" to noticeGiven, "optedOut" to optedOut, "lspact" to lspact ).toWritableMap() }