Skip to content

Commit

Permalink
Update API Push and MassPush: add param AndroidNotificationThreadId
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Oct 23, 2024
1 parent c845dac commit 790a782
Show file tree
Hide file tree
Showing 18 changed files with 283 additions and 250 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-10-23 Version: 3.13.18
- Update API Push and MassPush: add param AndroidNotificationThreadId

2024-10-23 Version: 1.0.0
ListUsers,ListUserBasicInfos api新增支持status字段

Expand Down
16 changes: 8 additions & 8 deletions aliyun-net-sdk-push/Push/Model/V20160801/CheckDevicesResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,31 +56,31 @@ public List<CheckDevices_DeviceCheckInfo> DeviceCheckInfos
public class CheckDevices_DeviceCheckInfo
{

private string deviceId;

private bool? available;

public string DeviceId
private string deviceId;

public bool? Available
{
get
{
return deviceId;
return available;
}
set
{
deviceId = value;
available = value;
}
}

public bool? Available
public string DeviceId
{
get
{
return available;
return deviceId;
}
set
{
available = value;
deviceId = value;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,31 +56,31 @@ public List<ListSummaryApps_SummaryAppInfo> SummaryAppInfos
public class ListSummaryApps_SummaryAppInfo
{

private string appName;

private long? appKey;

public string AppName
private string appName;

public long? AppKey
{
get
{
return appName;
return appKey;
}
set
{
appName = value;
appKey = value;
}
}

public long? AppKey
public string AppName
{
get
{
return appKey;
return appName;
}
set
{
appKey = value;
appName = value;
}
}
}
Expand Down
Loading

0 comments on commit 790a782

Please sign in to comment.