UNPKG

square-connect

Version:

JavaScript client library for the Square Connect v2 API

46 lines (39 loc) 1.18 kB
/** * Square Connect API * Client library for accessing the Square Connect APIs * * OpenAPI spec version: 2.0 * Contact: developers@squareup.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * * Swagger Codegen version: 2.3.0-SNAPSHOT * */ var ApiClient = require('../ApiClient'); /** * Enum class TeamMemberAssignedLocationsAssignmentType. * @enum {} * @readonly */ var exports = { /** * value: "ALL_CURRENT_AND_FUTURE_LOCATIONS" * @const */ "ALL_CURRENT_AND_FUTURE_LOCATIONS": "ALL_CURRENT_AND_FUTURE_LOCATIONS", /** * value: "EXPLICIT_LOCATIONS" * @const */ "EXPLICIT_LOCATIONS": "EXPLICIT_LOCATIONS"}; /** * Returns a <code>TeamMemberAssignedLocationsAssignmentType</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/TeamMemberAssignedLocationsAssignmentType} The enum <code>TeamMemberAssignedLocationsAssignmentType</code> value. */ exports.constructFromObject = function(object) { return object; } module.exports = exports;