/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @fileoverview Representation of an phone number.
*/
/**
* @class
* Base interface for all phone objects.
*
* @name opensocial.Phone
*/
/**
* Base interface for all phone objects.
*
* @private
* @constructor
*/
opensocial.Phone = function() {};
/**
* @static
* @class
* All of the fields that a phone has. These are the supported keys for the
* Phone.getField() method.
*
* @name opensocial.Phone.Field
*/
opensocial.Phone.Field = {
/**
* The phone number type or label, specified as a string.
* Examples: work, my favorite store, my house, etc.
* This field may be used interchangeably with the string 'type'.
* @member opensocial.Phone.Field
*/
TYPE : 'type',
/**
* The phone number, specified as a string.
* This field may be used interchangeably with the string 'number'.
* @member opensocial.Phone.Field
*/
NUMBER : 'number'
};
/**
* Gets data for this phone that is associated with the specified key.
*
* @param {String} key The key to get data for;
* keys are defined in
* Phone.Field
* @param {Map.<opensocial.DataRequest.DataRequestFields, Object>}
* opt_params Additional
* params
* to pass to the request.
* @return {String} The data
*/
opensocial.Phone.prototype.getField = function(key, opt_params) {};