Files
kami_itunes_june/AppleBatch_June.Model/DeleteDeviceReust.cs
2024-07-22 00:43:14 +08:00

350 lines
7.0 KiB
C#

namespace AppleBatch_June.Model
{
public class DeleteDeviceReust
{
public class Removeddevice
{
public string listImageLocation { get; set; }
public string listImageLocation2x { get; set; }
public string listImageLocation3x { get; set; }
public string infoboxImageLocation { get; set; }
public string infoboxImageLocation2x { get; set; }
public string infoboxImageLocation3x { get; set; }
public bool currentDevice { get; set; }
public bool removalPending { get; set; }
public string deviceDetailHttpMethod { get; set; }
public string deviceDetailUri { get; set; }
public Dateformatter dateFormatter { get; set; }
public Timeformatter timeFormatter { get; set; }
public bool iCloudDevice { get; set; }
public bool applePayCardRemovalPending { get; set; }
public bool suppressChangePasswordLink { get; set; }
public bool showBackupStatus { get; set; }
public bool showSerialNumber { get; set; }
public bool allowRemoval { get; set; }
public bool fmipCapable { get; set; }
public bool backupCapable { get; set; }
public string os { get; set; }
public bool trustedDevice { get; set; }
public string osAndVersion { get; set; }
public bool accountSupportsVerificationCodes { get; set; }
public bool supportsVerificationCodes { get; set; }
public bool pushDevice { get; set; }
public bool hasApplePayCards { get; set; }
public bool hasActiveSurfAccount { get; set; }
public string deviceClass { get; set; }
public bool primary { get; set; }
public bool fmipEnabled { get; set; }
public bool secondary { get; set; }
public string modelName { get; set; }
public string osVersion { get; set; }
public bool untrusted { get; set; }
public string name { get; set; }
public string id { get; set; }
public string type { get; set; }
}
public class Dateformatter
{
public string locale { get; set; }
public Decimalstyle decimalStyle { get; set; }
public string resolverStyle { get; set; }
public Zone zone { get; set; }
public Chronology chronology { get; set; }
}
public class Decimalstyle
{
public string zeroDigit { get; set; }
public string positiveSign { get; set; }
public string negativeSign { get; set; }
public string decimalSeparator { get; set; }
}
public class Zone
{
public int totalSeconds { get; set; }
public string id { get; set; }
public Rules rules { get; set; }
}
public class Rules
{
public bool fixedOffset { get; set; }
public object[] transitions { get; set; }
public object[] transitionRules { get; set; }
}
public class Chronology
{
public string calendarType { get; set; }
public string id { get; set; }
}
public class Timeformatter
{
public string locale { get; set; }
public Decimalstyle1 decimalStyle { get; set; }
public string resolverStyle { get; set; }
public Zone1 zone { get; set; }
}
public class Decimalstyle1
{
public string zeroDigit { get; set; }
public string positiveSign { get; set; }
public string negativeSign { get; set; }
public string decimalSeparator { get; set; }
}
public class Zone1
{
public int totalSeconds { get; set; }
public string id { get; set; }
public Rules1 rules { get; set; }
}
public class Rules1
{
public bool fixedOffset { get; set; }
public object[] transitions { get; set; }
public object[] transitionRules { get; set; }
}
public class Device
{
public string listImageLocation { get; set; }
public string listImageLocation2x { get; set; }
public string listImageLocation3x { get; set; }
public string infoboxImageLocation { get; set; }
public string infoboxImageLocation2x { get; set; }
public string infoboxImageLocation3x { get; set; }
public bool currentDevice { get; set; }
public bool removalPending { get; set; }
public string deviceDetailHttpMethod { get; set; }
public string deviceDetailUri { get; set; }
public Dateformatter1 dateFormatter { get; set; }
public Timeformatter1 timeFormatter { get; set; }
public bool iCloudDevice { get; set; }
public bool applePayCardRemovalPending { get; set; }
public bool suppressChangePasswordLink { get; set; }
public bool showBackupStatus { get; set; }
public bool showSerialNumber { get; set; }
public bool allowRemoval { get; set; }
public bool fmipCapable { get; set; }
public bool backupCapable { get; set; }
public string os { get; set; }
public bool trustedDevice { get; set; }
public string osAndVersion { get; set; }
public bool accountSupportsVerificationCodes { get; set; }
public bool supportsVerificationCodes { get; set; }
public bool pushDevice { get; set; }
public bool hasApplePayCards { get; set; }
public bool hasActiveSurfAccount { get; set; }
public string deviceClass { get; set; }
public bool primary { get; set; }
public bool fmipEnabled { get; set; }
public bool secondary { get; set; }
public string modelName { get; set; }
public string osVersion { get; set; }
public bool untrusted { get; set; }
public string name { get; set; }
public string id { get; set; }
public string type { get; set; }
}
public class Dateformatter1
{
public string locale { get; set; }
public Decimalstyle2 decimalStyle { get; set; }
public string resolverStyle { get; set; }
public Zone2 zone { get; set; }
public Chronology1 chronology { get; set; }
}
public class Decimalstyle2
{
public string zeroDigit { get; set; }
public string positiveSign { get; set; }
public string negativeSign { get; set; }
public string decimalSeparator { get; set; }
}
public class Zone2
{
public int totalSeconds { get; set; }
public string id { get; set; }
public Rules2 rules { get; set; }
}
public class Rules2
{
public bool fixedOffset { get; set; }
public object[] transitions { get; set; }
public object[] transitionRules { get; set; }
}
public class Chronology1
{
public string calendarType { get; set; }
public string id { get; set; }
}
public class Timeformatter1
{
public string locale { get; set; }
public Decimalstyle3 decimalStyle { get; set; }
public string resolverStyle { get; set; }
public Zone3 zone { get; set; }
}
public class Decimalstyle3
{
public string zeroDigit { get; set; }
public string positiveSign { get; set; }
public string negativeSign { get; set; }
public string decimalSeparator { get; set; }
}
public class Zone3
{
public int totalSeconds { get; set; }
public string id { get; set; }
public Rules3 rules { get; set; }
}
public class Rules3
{
public bool fixedOffset { get; set; }
public object[] transitions { get; set; }
public object[] transitionRules { get; set; }
}
public Device[] devices { get; set; }
public string hsa2SignedInDevicesLink { get; set; }
public Removeddevice removedDevice { get; set; }
public bool suppressChangePasswordLink { get; set; }
}
}