QueryDeviceInfoResponse.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. using Aliyun.Acs.Core;
  20. using System.Collections.Generic;
  21. namespace Aliyun.Acs.Push.Model.V20160801
  22. {
  23. public class QueryDeviceInfoResponse : AcsResponse
  24. {
  25. private DeviceInfo_ deviceInfo;
  26. public DeviceInfo_ DeviceInfo
  27. {
  28. get
  29. {
  30. return deviceInfo;
  31. }
  32. set
  33. {
  34. deviceInfo = value;
  35. }
  36. }
  37. public class DeviceInfo_{
  38. private string deviceId;
  39. private string deviceType;
  40. private string account;
  41. private string deviceToken;
  42. private string tags;
  43. private string alias;
  44. private string lastOnlineTime;
  45. private bool? online;
  46. public string DeviceId
  47. {
  48. get
  49. {
  50. return deviceId;
  51. }
  52. set
  53. {
  54. deviceId = value;
  55. }
  56. }
  57. public string DeviceType
  58. {
  59. get
  60. {
  61. return deviceType;
  62. }
  63. set
  64. {
  65. deviceType = value;
  66. }
  67. }
  68. public string Account
  69. {
  70. get
  71. {
  72. return account;
  73. }
  74. set
  75. {
  76. account = value;
  77. }
  78. }
  79. public string DeviceToken
  80. {
  81. get
  82. {
  83. return deviceToken;
  84. }
  85. set
  86. {
  87. deviceToken = value;
  88. }
  89. }
  90. public string Tags
  91. {
  92. get
  93. {
  94. return tags;
  95. }
  96. set
  97. {
  98. tags = value;
  99. }
  100. }
  101. public string Alias
  102. {
  103. get
  104. {
  105. return alias;
  106. }
  107. set
  108. {
  109. alias = value;
  110. }
  111. }
  112. public string LastOnlineTime
  113. {
  114. get
  115. {
  116. return lastOnlineTime;
  117. }
  118. set
  119. {
  120. lastOnlineTime = value;
  121. }
  122. }
  123. public bool? Online
  124. {
  125. get
  126. {
  127. return online;
  128. }
  129. set
  130. {
  131. online = value;
  132. }
  133. }
  134. }
  135. }
  136. }