Interface UpdateFieldSchemeParametersPartialFailure

Result of updating field scheme parameters for a specific field, scheme, and optional work type.

interface UpdateFieldSchemeParametersPartialFailure {
    error?: string;
    fieldId: string;
    schemeId: number;
    success: boolean;
    workTypeId?: number;
}

Properties

error?: string
fieldId: string
schemeId: number
success: boolean
workTypeId?: number