> For the complete documentation index, see [llms.txt](https://guia.fenicio.help/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guia.fenicio.help/developers/referencia/tipos-de-valores.md).

# 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

### Origen

> * **`MERCADOLIBRE`**
> * **`CALLCENTER`**
> * **`WEB`**
> * **`PEDIDO`**

### EstadoOrden

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

### Estado

> * **`PENDIENTE`**
> * **`APROBADO`**
> * **`ERROR`**
> * **`CANCELADO`**&#x20;
> * **`REVERSADO`**

### TipoFormaPago

> * **`CREDIT_CARD`**
> * **`PREPAID_CARD`**
> * **`DEBIT_CARD`**
> * **`CARD`**
> * **`BANK_TRANSFER`**
> * **`TICKET`**
> * **`CREDIT`**
> * **`ACCOUNT`**
> * **`ATM`**
> * **`QR`**

### OrigenDescuento

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

### EstadoEntrega

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

### TipoEntrega

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

### 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`**

### EventoCallcenter

> * **`CREAR`**
> * **`ENVIAR`**
> * **`FINALIZAR`**

## Tipos de identificadores

## ProductCode

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

## 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 (**`-`**)

## TipoDeDocumento

<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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
