
com.pulumi.googlenative.firebasehosting.v1beta1.kotlin.outputs.ActingUserResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.firebasehosting.v1beta1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Contains metadata about the user who performed an action, such as creating a release or finalizing a version.
* @property email The email address of the user when the user performed the action.
* @property imageUrl A profile image URL for the user. May not be present if the user has changed their email address or deleted their account.
*/
public data class ActingUserResponse(
public val email: String,
public val imageUrl: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.firebasehosting.v1beta1.outputs.ActingUserResponse): ActingUserResponse = ActingUserResponse(
email = javaType.email(),
imageUrl = javaType.imageUrl(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy