@apideck/node
Version:
Apideck Node.js SDK
64 lines (63 loc) • 1.68 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.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 Offer
*/
export interface Offer {
/**
* A unique identifier for an object.
* @type {string}
* @memberof Offer
*/
readonly id?: string;
/**
*
* @type {string}
* @memberof Offer
*/
application_id?: string;
/**
* When custom mappings are configured on the resource, the result is included here.
* @type {object}
* @memberof Offer
*/
readonly custom_mappings?: object | null;
/**
* The user who last updated the object.
* @type {string}
* @memberof Offer
*/
readonly updated_by?: string | null;
/**
* The user who created the object.
* @type {string}
* @memberof Offer
*/
readonly created_by?: string | null;
/**
* The date and time when the object was last updated.
* @type {Date}
* @memberof Offer
*/
readonly updated_at?: Date | null;
/**
* The date and time when the object was created.
* @type {Date}
* @memberof Offer
*/
readonly created_at?: Date | null;
}
export declare function OfferFromJSON(json: any): Offer;
export declare function OfferFromJSONTyped(json: any, ignoreDiscriminator: boolean): Offer;
export declare function OfferToJSON(value?: Offer | null): any;