RequestedFormCompletion
A request, from a provider to a client, to fill out a form
Fields
custom_module_form
· CustomModuleForm
· The form to fill out custom_module_form_id
· String
· The ID of the form to fill out date_to_show
· String
· The relevant date to show form_answer_group
· FormAnswerGroup
· The filled form that completes the request form_answer_group_id
· String
· The id of the filled form that completes the request recipient_id
· String
· The ID of the recipient (client) recurring_form
· RecurringForm
· Recurring Form related to the request Used By
Definition
"""A request, from a provider to a client, to fill out a form"""type RequestedFormCompletion { """ The form to fill out """ custom_module_form: CustomModuleForm
""" The ID of the form to fill out """ custom_module_form_id: String
""" The relevant date to show """ date_to_show: String
""" The filled form that completes the request """ form_answer_group: FormAnswerGroup
""" The id of the filled form that completes the request """ form_answer_group_id: String
""" The unique identifier of the form """ id: ID!
""" type of form requested """ item_type: String!
""" A serialized JSON string of metadata. Maximum character limit of 128,000. Only accessible by staff and providers """ metadata: String
""" The recipient (client) """ recipient: User
""" The ID of the recipient (client) """ recipient_id: String
""" Recurring Form related to the request """ recurring_form: RecurringForm
""" The sender (provider) """ sender: User
""" The ID of the sender (provider) """ sender_id: String
""" The status of the request """ status: String}