Class UpdateFormRequest
A partial update to an existing form: only the non-null members are applied, so callers can change a single property (e.g. just the title) without re-sending the whole form.
public sealed class UpdateFormRequest
- Inheritance
-
UpdateFormRequest
- Inherited Members
Properties
Description
New description, or null to leave unchanged.
public string? Description { get; set; }
Property Value
RequireAuth
New require-auth flag, or null to leave unchanged (nullable distinguishes "no change" from "set false").
public bool? RequireAuth { get; set; }
Property Value
- bool?
SchemaJson
New schema JSON, or null to leave unchanged.
public string? SchemaJson { get; set; }
Property Value
Status
New status ("published"/"draft"…), or null to leave unchanged.
public string? Status { get; set; }
Property Value
Title
New title, or null to leave unchanged.
public string? Title { get; set; }