Builder
Ce contenu n’est pas encore disponible dans votre langue.
class Builder
Constructors
Section titled “Constructors”| Builder | constructor() |
Properties
Section titled “Properties”| Name | Summary |
|---|---|
| name | var name: String? |
| productId | var productId: String? |
| quantity | var quantity: Double? |
| sku | var sku: String? |
| totalPrice | var totalPrice: Double? |
| unitPrice | var unitPrice: Double? |
Functions
Section titled “Functions”| Name | Summary |
|---|---|
| build | fun build(): ProductDetails |
| name | fun name(name: String?): ProductDetails.Builder |
| productId | fun productId(productId: String?): ProductDetails.Builder |
| quantity | fun quantity(quantity: Double?): ProductDetails.Builder |
| sku | fun sku(sku: String?): ProductDetails.Builder |
| totalPrice | fun totalPrice(totalPrice: Double?): ProductDetails.Builder |
| unitPrice | fun unitPrice(unitPrice: Double?): ProductDetails.Builder |