INPUT_OBJECT
ExpenseCreateInput
link GraphQL Schema definition
- input ExpenseCreateInput {
- # Main title of the expense
- String! :
- # Longer text to attach to the expense
- String :
- # Tags associated to the expense (ie. Food, Engineering...)
- String] : [
- # The type of the expense
- ExpenseType! :
- # A private note that will be attached to your invoice, as HTML
- String :
- # Tax ID, VAT number...etc This information will be printed on your invoice.
- String :
- # The payout method that will be used to reimburse the expense
- PayoutMethodInput! :
- # @deprecated 2020-04-08: Please use the items field - The list of items for this
- # expense. Total amount will be computed from them.
- ExpenseItemCreateInput] : [
- # The list of items for this expense. Total amount will be computed from them.
- ExpenseItemCreateInput] : [
- # (Optional) A list of files that you want to attach to this expense
- ExpenseAttachedFileInput!] : [
- # Account to reimburse
- AccountReferenceInput! :
- # The address of the payee
- LocationInput :
- }