Source code for models_v2.tier_type_2_enum

# -*- coding: utf-8 -*-

[docs]class TierType2Enum(object): """Implementation of the 'TierType2' enum. Specifies the Google tier types. Attributes: KGOOGLESTANDARD: TODO: type description here. KGOOGLEREGIONAL: TODO: type description here. KGOOGLEMULTIREGIONAL: TODO: type description here. KGOOGLENEARLINE: TODO: type description here. KGOOGLECOLDLINE: TODO: type description here. """ KGOOGLESTANDARD = 'kGoogleStandard' KGOOGLEREGIONAL = 'kGoogleRegional' KGOOGLEMULTIREGIONAL = 'kGoogleMultiRegional' KGOOGLENEARLINE = 'kGoogleNearline' KGOOGLECOLDLINE = 'kGoogleColdline'