Class NetworkCreationRequest
CreateOrganizationNetwork
[DataContract]
public class NetworkCreationRequest
- Inheritance
-
NetworkCreationRequest
- Inherited Members
Properties
CopyFromNetworkId
The ID of the network to copy configuration from. Other provided parameters will override the copied configuration, except type which must match this network's type exactly.
[DataMember(Name = "copyFromNetworkId")]
public string? CopyFromNetworkId { get; set; }
Property Value
Name
The name of the new network
[DataMember(Name = "name")]
public string Name { get; set; }
Property Value
Notes
Add any notes or additional information about this network here.
[DataMember(Name = "notes")]
public string? Notes { get; set; }
Property Value
ProductTypes
The product type(s) of the new network. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, environmental. If more than one type is included, the network will be a combined network.
[DataMember(Name = "productTypes")]
public List<ProductType> ProductTypes { get; set; }
Property Value
Tags
A list of tags to be applied to the network
[DataMember(Name = "tags")]
public List<string>? Tags { get; set; }
Property Value
TimeZone
The timezone of the network. For a list of allowed timezones, please see the 'TZ' column in the table in this article https://en.wikipedia.org/wiki/List_of_tz_database_time_zone
[DataMember(Name = "timeZone")]
public string? TimeZone { get; set; }