# Functions
Create accepts a CreateOpts struct and creates a new network using the values provided.
Delete accepts a unique ID and deletes the network associated with it.
ExtractNetworks accepts a Page struct, specifically a NetworkPage struct, and extracts the elements into a slice of Network structs.
Get retrieves a specific network based on its unique ID.
List returns a Pager which allows you to iterate over a collection of networks.
# Structs
CreateOpts is the common options struct used in this package's Create operation.
CreateResult represents the result of a create operation.
DeleteResult represents the result of a delete operation.
GetResult represents the result of a get operation.
Network represents, well, a network.
NetworkPage is the page returned by a pager when traversing over a collection of networks.
# Interfaces
CreateOptsBuilder is the interface options structs have to satisfy in order to be used in the main Create operation in this package.