Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Aquí se mostrarán los esquemas que se han realizado.

true
Content Report Table
maxResults20
isMissingRequiredParameters
Table of Contents
minLevel1
maxLevel7

Provider

publicclass Provider {

...

private Date updatedAt;

}

CustomizableAmount

publicclass CustomizableAmount {

private Boolean allow; // True -> Si permite un monto customizable, caso contrario False

private Long max; // Monto maximo en centavos (Informacion requerida solo si allow es True)

private Long min; // Monto minimo en centavos (Informacion requerida solo si allow es True)

}

Product

publicclass Product {

@Id

private String id;

@Indexed

private String name;

@Indexed

private String providerId;

private Long amountInCents;

private String upc;

privatedouble commission; // Opcional

private Long discountInCents; // Opcional

private Date createdAt;

}