-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Missing members and camera models applied
- Loading branch information
1 parent
e72e9af
commit ce27f06
Showing
5 changed files
with
112 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace Meraki.Api.Data; | ||
|
||
/// <summary> | ||
/// Quality and resolution for MV73X camera models. | ||
/// </summary> | ||
[DataContract] | ||
public class Mv73X | ||
{ | ||
/// <summary> | ||
/// Gets or Sets Quality | ||
/// </summary> | ||
[ApiAccess(ApiAccess.ReadWrite)] | ||
[DataMember(Name = "quality")] | ||
public StandardEnhancedHighQuality Quality { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or Sets Resolution | ||
/// </summary> | ||
[ApiAccess(ApiAccess.ReadWrite)] | ||
[DataMember(Name = "resolution")] | ||
public Mv73XResolution Resolution { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
namespace Meraki.Api.Data; | ||
|
||
/// <summary> | ||
/// Resolution of the camera. Resolution of the camera.Can be one of '1920x1080', '2688x1512' or '3840x2160'. | ||
/// </summary> | ||
[JsonConverter(typeof(StringEnumConverter))] | ||
public enum Mv73XResolution | ||
{ | ||
/// <summary> | ||
/// Enum _1920x1080 | ||
/// </summary> | ||
[EnumMember(Value = "1920x1080")] | ||
Size1920x1080, | ||
|
||
/// <summary> | ||
/// Enum _2688x1512 | ||
/// </summary> | ||
[EnumMember(Value = "2688x1512")] | ||
Size2688x1512, | ||
|
||
/// <summary> | ||
/// Enum _3840x2160 | ||
/// </summary> | ||
[EnumMember(Value = "3840x2160")] | ||
Size3840x2160 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace Meraki.Api.Data; | ||
|
||
/// <summary> | ||
/// Peer Network | ||
/// </summary> | ||
[DataContract] | ||
public class ThirdPartyVpnPeerNetwork | ||
{ | ||
/// <summary> | ||
/// Names - Undocumented - 2024-10-22 | ||
/// </summary> | ||
[ApiAccess(ApiAccess.Read)] | ||
[DataMember(Name = "names")] | ||
public List<string>? Names { get; set; } | ||
|
||
/// <summary> | ||
/// Ids - Undocumented - 2024-10-22 | ||
/// </summary> | ||
[ApiAccess(ApiAccess.Read)] | ||
[DataMember(Name = "ids")] | ||
public List<string>? Ids { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters