Class CreateFormRequest
Request to create a new form.
public sealed class CreateFormRequest
- Inheritance
-
CreateFormRequest
- Inherited Members
Properties
Description
Form description.
public string? Description { get; set; }
Property Value
RequireAuth
Whether the form requires an authenticated user.
public bool RequireAuth { get; set; }
Property Value
SchemaJson
Optional schema JSON. Defaults to an empty form when null.
public string? SchemaJson { get; set; }
Property Value
Status
"published" or "draft" (default).
public string? Status { get; set; }
Property Value
Title
Form title.
public string Title { get; set; }