FalAiGenerationResponse

@Serializable
data class FalAiGenerationResponse(val images: List<FalAiImage>? = null, val seed: Long? = null, val prompt: String? = null, val hasNsfwConcepts: List<Boolean>? = null)(source)

Carries FalAiGenerationResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(images: List<FalAiImage>? = null, seed: Long? = null, prompt: String? = null, hasNsfwConcepts: List<Boolean>? = null)

Properties

Link copied to clipboard
@SerialName(value = "has_nsfw_concepts")
val hasNsfwConcepts: List<Boolean>?

Exposes the hasNsfwConcepts value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "images")
val images: List<FalAiImage>?

Exposes the images value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "prompt")
val prompt: String?

Exposes the prompt value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "seed")
val seed: Long?

Exposes the seed value used by the SDAI network layer.