I am attempting to recreate an existing offline area of my web map using a Python script that I can schedule to run overnight. Using the Python API documentation I am using the recommended workflow of calling my webmap like so:
WebMap(portalItem)
Then I am duplicating it's existing properties like so:
offline_area = WebMap(portalItem).offline_areas.list()[0]
name = offline_area.title
properties = {'description': 'ENTER DESCRIPTION HERE', 'name': name+'_V2'}
extent = offline_area.properties['extent']
wkid = extent['spatialReference']['wkid']
xmin = extent['xmin']
xmax = extent['xmax']
ymin = extent['ymin']
ymax = extent['ymax']
However, I cannot work out how to extract the minimum scale and maximum scale of the existing offline area. This is apparently not one of the properties of the map area itself. Is it possible to call this property of the map area so that I can recreate the map area with the same minimum and maximum scales?