GetBudgetPlainArgs

data class GetBudgetPlainArgs(val accountId: String? = null, val name: String, val namePrefix: String? = null, val tags: Map<String, String>? = null) : ConvertibleToJava<GetBudgetPlainArgs>

A collection of arguments for invoking getBudget.

Constructors

Link copied to clipboard
constructor(accountId: String? = null, name: String, namePrefix: String? = null, tags: Map<String, String>? = null)

Properties

Link copied to clipboard
val accountId: String? = null

The ID of the target account for budget. Will use current user's account_id by default if omitted.

Link copied to clipboard

The name of a budget. Unique within accounts. The following arguments are optional:

Link copied to clipboard
val namePrefix: String? = null

The prefix of the name of a budget. Unique within accounts.

Link copied to clipboard
val tags: Map<String, String>? = null

Map of tags assigned to the resource.

Functions

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