# Tipos de valores

Definición de tipos de valores especiales referenciados en esta documentación.

## Date

> Fecha en formato AAA-MM-DD.&#x20;
>
> Ejemplo: **`2019-11-12.`**

## DateTime

> Fecha y hora en formato ISO 8601, indicando zona horaria.&#x20;
>
> Ejemplo: **`2019-11-12T02:59:59-0300.`**

## Price

> Objeto clave/valor con el precio expresado en cada moneda disponible.
>
> * La clave representa el código de moneda (ISO 4217).
> * El valor representa el monto.
>
> Ejemplo: **`{ "UYU": 1900.00, "USD": 45.50 }`**

## Enums

### EstadoOrden

> * **`EN_CURSO`**
> * **`ABANDONADA`**
> * **`PAGO_PENDIENTE`**
> * **`REQUIERE_APROBACION`**
> * **`APROBADA`**
> * **`CANCELADA`**

### EstadoEntrega

> * **`RECIBIDO`**
> * **`PREPARANDO`**
> * **`AGUARDANDO_DESPACHO`**
> * **`EN_TRANSITO`**
> * **`LISTO_PARA_RETIRAR`**
> * **`ENTREGADO`**

### TipoEntrega

> * **`RETIRO`**
> * **`ENVIO`**

### OrigenDescuento

> * **`CUPON`**
> * **`PRODUCTO`**
> * **`MEDIO_DE_PAGO`**
> * **`PROMOCION`**

### ServiceType <a href="#service-type" id="service-type"></a>

> Enum con los tipos de servicio. A definir por el servicio logístico.&#x20;
>
> Ejemplos:&#x20;
>
> **`Agendado`**
>
> **`Express`**

## Tipos de identificadores

## ProductCode

> String(32) con el código correspondiente.
>
> Caracteres permitidos:&#x20;
>
> * letras minúsculas
>
> * guion medio (**`-`**)
>
> * puntos (**`.`**)
>
> * asteriscos (**`*`**)
>
> Restricciones:
>
> * No se admite el uso de la letra (**`ñ`**)

## PresentationCode

> String(32) con el código correspondiente.
>
> Caracteres permitidos:&#x20;
>
> * letras minúsculas,&#x20;
> * guion medio (**`-`**)
> * puntos (**`.`**)
> * comas (**`,`**)&#x20;
> * paréntesis (**`()`**)

## SKU Code

> String(128) con el código correspondiente.
>
> Caracteres permitidos:&#x20;
>
> * alfanuméricos&#x20;
> * guion medio (**`-`**)

## Valores posibles para el tipo de documento

<table><thead><tr><th width="271">Valor</th><th>Descripción</th></tr></thead><tbody><tr><td><strong><code>CI_UY</code></strong></td><td>Cédula de Identidad (Uruguay).</td></tr><tr><td><strong><code>RUN_CL</code></strong></td><td>Rol Único Nacional (Chile).</td></tr><tr><td><strong><code>CC_CO</code></strong></td><td>Cédula de Ciudadanía (Colombia).</td></tr><tr><td><strong><code>CE_CO</code></strong></td><td>Cédula de Extranjería (Colombia).</td></tr><tr><td><strong><code>CIC_PY</code></strong></td><td>Cédula de Identidad Civil (Paraguay).</td></tr><tr><td><strong><code>CIE_DO</code></strong></td><td>Cédula de Identidad y Electoral (República Dominicana).</td></tr><tr><td><strong><code>PASAPORTE</code></strong></td><td>Pasaporte.</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guia.fenicio.help/developers/referencia/tipos-de-valores.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
