Type Alias TenantPatchErrors

type TenantPatchErrors = {
    errors?: {
        code: string;
        meta?: TenantSingleMetaErrorDetail | TenantMultipleMetaErrorsDetail;
        source?: { parameter?: string; pointer?: string };
        title: string;
    }[];
}
Index

Properties

Properties

errors?: {
    code: string;
    meta?: TenantSingleMetaErrorDetail | TenantMultipleMetaErrorsDetail;
    source?: { parameter?: string; pointer?: string };
    title: string;
}[]

Type Declaration

  • code: string

    The error code.

  • Optionalmeta?: TenantSingleMetaErrorDetail | TenantMultipleMetaErrorsDetail
  • Optionalsource?: { parameter?: string; pointer?: string }

    References to the source of the error.

    • Optionalparameter?: string

      The URI query parameter that caused the error.

    • Optionalpointer?: string

      A JSON Pointer to the property that caused the error.

  • title: string

    Summary of the problem.