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

com.pulumi.googlenative.bigquery.v2.kotlin.outputs.QueryParameterValueResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.bigquery.v2.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 *
 * @property arrayValues [Optional] The array values, if this is an array type.
 * @property structValues [Optional] The struct field values, in order of the struct type's declaration.
 * @property value [Optional] The value of this value, if a simple scalar type.
 */
public data class QueryParameterValueResponse(
    public val arrayValues: List,
    public val structValues: Map,
    public val `value`: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.bigquery.v2.outputs.QueryParameterValueResponse): QueryParameterValueResponse = QueryParameterValueResponse(
            arrayValues = javaType.arrayValues().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.googlenative.bigquery.v2.kotlin.outputs.QueryParameterValueResponse.Companion.toKotlin(args0)
                })
            }),
            structValues = javaType.structValues().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            `value` = javaType.`value`(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy