UNPKG

@gitchrisqueen/tdameritrade-api-js-client

Version:
55 lines (48 loc) 1.12 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'; /** * Enum class Session. * @enum {} * @readonly */ export default class Session { /** * value: "NORMAL" * @const */ NORMAL = "NORMAL"; /** * value: "AM" * @const */ AM = "AM"; /** * value: "PM" * @const */ PM = "PM"; /** * value: "SEAMLESS" * @const */ SEAMLESS = "SEAMLESS"; /** * Returns a <code>Session</code> enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/Session} The enum <code>Session</code> value. */ static constructFromObject(object) { return object; } }