Quaero.DW.DocType

Quaero.DW.DocType

Quaero.DW.DocType Class

public class Quaero.DW.DocType : Quaero.DW.Aggregate;
One document type. See REST API document types

name Field

System.String (Quaero.DW.DocType)doctype.name;
Short name of this document type.. See JSON name.

i18n Field

Quaero.DW.i18n (Quaero.DW.DocType)doctype.i18n;
Full text names of this document type. See JSON i18n.

deduplicate_expire Property

System.String (Quaero.DW.DocType)doctype.deduplicate_expire;
How long until deduplication information about this document is expired. See JSON deduplicate_expire.

expire Field

System.String (Quaero.DW.DocType)doctype.expire;
How long until documents of this type are expired. See JSON expire.

rotation Field

System.Int16 (Quaero.DW.DocType)doctype.rotation;
Initial rotation for all documents of this type, in degrees. See JSON rotation.

becomes Field

System.String (Quaero.DW.DocType)doctype.becomes;
TBW See JSON becomes.

replace_type Property

System.String (Quaero.DW.DocType)doctype.replace_type;

replace_field Property

System.String (Quaero.DW.DocType)doctype.replace_field;

replace_period Property

System.String (Quaero.DW.DocType)doctype.replace_period;

saisie Field

System.String[] (Quaero.DW.DocType)doctype.saisie;
Codifies how manual data entry happens. See ["REST.html#JSON ] saisie"].

deduplicate Field

System.Boolean (Quaero.DW.DocType)doctype.deduplicate;
If true, content deduplication is done on documents of this type. See JSON deduplicate.

no_scale Property

System.Boolean (Quaero.DW.DocType)doctype.no_scale;
If true, documents of this type should not be scaled when displayed to the end user. See JSON no_scale.

skip_banner Property

System.Boolean (Quaero.DW.DocType)doctype.skip_banner;
If true, the first page of the document should be skipped when displayed to the end user. See JSON skip_banner.

_default Field

System.Boolean (Quaero.DW.DocType)doctype._default;
If true, all new users gain access to this document type. See JSON default.

fields Field

System.String[] (Quaero.DW.DocType)doctype.fields;
List of information field names used by this document type. See JSON fields.

has_field() Method

System.Boolean Quaero.DW.DocType.has_field(System.String name);
Returns true of this document type includes this information field.

Parameters

name
Name of the information field you are looking for.
[System.String]

Returns

info_field() Method

Quaero.DW.InfoField Quaero.DW.DocType.info_field(System.String name);
Fetches details of one information field. Throws an UnknownObject exception if this document type doesn't include this information field.

Parameters

name
Name of the information field.
[System.String]

Returns

ToString() Method

 Quaero.DW.DocType.ToString();
Returns this information field's short name.

Implicit Conversion To System.String

implicit public static operator System.String (Quaero.DW.DocType o);
Implicit conversion of a [Quaero.DW.DocType] to a string. This string is obviously the short document type name.

Parameters

o
[Quaero.DW.DocType]

Returns