INPUT_OBJECT

AcceptPayeeInvitationInput

Autogenerated input type of AcceptPayeeInvitation

link GraphQL Schema definition

  • input AcceptPayeeInvitationInput {
  • # A unique identifier for the client performing the mutation.
  • client_mutation_id: String
  • # Run the mutation with no side effects in validate-only mode. When true, the
  • # inputs will be validated and errors will be returned, but the mutation will not
  • # perform any actions.
  • skip_save: Boolean
  • # Payee invitation code
  • code: String!
  • # First name of the payee
  • first_name: String!
  • # Last name of the payee
  • last_name: String!
  • # email of the payee
  • email: String!
  • # password of the payee
  • password: String!
  • # password confirmation (should be same as password field)
  • confirm_password: String!
  • # Whether or not the user wants to get updates.
  • receive_updates: Boolean
  • # Whether or not the user agrees to the TOC.
  • toc: Boolean
  • }