ProductArgs

data class ProductArgs(val id: Output<String>? = null, val identifierHelper: Output<IdentifierHelperArgs>? = null, val name: Output<String>? = null) : ConvertibleToJava<ProductArgs>

Product contains information about a product and how to uniquely identify it.

Constructors

Link copied to clipboard
fun ProductArgs(id: Output<String>? = null, identifierHelper: Output<IdentifierHelperArgs>? = null, name: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ProductArgs

Properties

Link copied to clipboard
val id: Output<String>? = null

Token that identifies a product so that it can be referred to from other parts in the document. There is no predefined format as long as it uniquely identifies a group in the context of the current document.

Link copied to clipboard

Helps in identifying the underlying product.

Link copied to clipboard
val name: Output<String>? = null

Name of the product.