UNPKG

@gitchrisqueen/tdameritrade-api-js-client

Version:
55 lines (40 loc) 1.48 kB
/** * TD Ameritrade API - OAuth2 * This is replication of the TD Ameritrade API. * * OpenAPI spec version: 0.1.4 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. * */ import ApiClient from '../ApiClient'; /** * The OneOfinlineResponse200Schema model module. * @module model/OneOfinlineResponse200Schema * @version 0.1.4 */ export default class OneOfinlineResponse200Schema { /** * Constructs a new <code>OneOfinlineResponse200Schema</code>. * @alias module:model/OneOfinlineResponse200Schema * @class */ constructor() { } /** * Constructs a <code>OneOfinlineResponse200Schema</code> from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/OneOfinlineResponse200Schema} obj Optional instance to populate. * @return {module:model/OneOfinlineResponse200Schema} The populated <code>OneOfinlineResponse200Schema</code> instance. */ static constructFromObject(data, obj) { if (data) { obj = obj || new OneOfinlineResponse200Schema(); } return obj; } }