conekta/conekta-node

View on GitHub
model/product.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* tslint:disable */
/* eslint-disable */
/**
 * Conekta API
 * Conekta sdk
 *
 * The version of the OpenAPI document: 2.1.0
 * Contact: engineering@conekta.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */



/**
 * 
 * @export
 * @interface Product
 */
export interface Product {
    /**
     * 
     * @type {{ [key: string]: any; }}
     * @memberof Product
     */
    'antifraud_info'?: { [key: string]: any; };
    /**
     * The brand of the item.
     * @type {string}
     * @memberof Product
     */
    'brand'?: string;
    /**
     * Short description of the item
     * @type {string}
     * @memberof Product
     */
    'description'?: string;
    /**
     * It is a key/value hash that can hold custom fields. Maximum 100 elements and allows special characters.
     * @type {{ [key: string]: string; }}
     * @memberof Product
     */
    'metadata'?: { [key: string]: string; };
    /**
     * The name of the item. It will be displayed in the order.
     * @type {string}
     * @memberof Product
     */
    'name': string;
    /**
     * The quantity of the item in the order.
     * @type {number}
     * @memberof Product
     */
    'quantity': number;
    /**
     * The stock keeping unit for the item. It is used to identify the item in the order.
     * @type {string}
     * @memberof Product
     */
    'sku'?: string;
    /**
     * List of tags for the item. It is used to identify the item in the order.
     * @type {Array<string>}
     * @memberof Product
     */
    'tags'?: Array<string>;
    /**
     * The price of the item in cents.
     * @type {number}
     * @memberof Product
     */
    'unit_price': number;
}