All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.petersamokhin.notionsdk.data.mapper.DatabaseSchemaMapper.kt Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.petersamokhin.notionsdk.data.mapper

import com.petersamokhin.notionsdk.data.model.internal.response.RetrieveDatabaseResponse
import com.petersamokhin.notionsdk.data.model.result.NotionDatabaseSchema

internal fun RetrieveDatabaseResponse.toDomain(): NotionDatabaseSchema =
    NotionDatabaseSchema(
        id = id,
        createdTime = createdTime,
        lastEditedTime = lastEditedTime,
        title = fullTitle(),
        schema = properties.mapValues { (_, value) -> value.toDomain() }
    )




© 2015 - 2025 Weber Informatics LLC | Privacy Policy