PagePlatform
        Inherits: Enum
Supported platforms for a page, including mobile and desktop systems. Each platform corresponds to a specific operating system or environment.
Properties
Methods
- 
            is_apple–Whether this PagePlatform instance is an Apple (iOS or macOS) platform. 
- 
            is_desktop–Whether this PagePlatform instance is a desktop (macOS, Windows, Linux) 
- 
            is_mobile–Whether this PagePlatform instance is a mobile (iOS or Android) platform. 
Properties#
ANDROID = 'android'
  
      class-attribute
      instance-attribute
  
#
    
ANDROID_TV = 'android_tv'
  
      class-attribute
      instance-attribute
  
#
    
IOS = 'ios'
  
      class-attribute
      instance-attribute
  
#
    
LINUX = 'linux'
  
      class-attribute
      instance-attribute
  
#
    
MACOS = 'macos'
  
      class-attribute
      instance-attribute
  
#
    
WINDOWS = 'windows'
  
      class-attribute
      instance-attribute
  
#
    Methods#
is_apple() -> bool
#
    Whether this PagePlatform instance is an Apple (iOS or macOS) platform.
is_desktop() -> bool
#
    Whether this PagePlatform instance is a desktop (macOS, Windows, Linux) platform.
is_mobile() -> bool
#
    Whether this PagePlatform instance is a mobile (iOS or Android) platform.