OBJECT

TaxInterviewOption

TaxInterviewOption is a key value pair type used by the tax interview. Each option represents a form value that musted be passed to the argon website.

link GraphQL Schema definition

1type TaxInterviewOption {
2
3# The name of the option.
4key: String!
5
6# The option value.
7value: String!
8
9}