NetworkOwnerInfo - LorenData/ECGrid-API GitHub Wiki
Back To Object Classes
public partial class NetworkOwnerInfo {
public string Type {get;set;}
public string RoutingType {get;set;}
public NetworkRoutingType Routing {get;set;}
public string LegacyPassword {get;set;}
public string InterconnectContact {get;set;}
public string InterconnectEMail {get;set;}
public string ErrorContact {get;set;}
public string ErrorEMail {get;set;}
public MailboxConfig Config {get;set;}
public int PricelistID {get;set;}
public int ContractID {get;set;}
}
Public Properties
- Type - String: A short string code to represent the internal Network Type within ECGrid.
- RoutingType - String: Used for automating Interconnects. Represents the model that the Network uses to route between Trading Partners.
- Routing - Enum NetworkRoutingType: A numeric value representing the entry's routing.
- LegacyPassword - String: This is a legacy configuration for a Network Password and to be deprecated.
- InterconnectContact - String: The name of the entity receiving Interconnect requests and related issues.
- InterconnectEMail - String: The email address of the entity receiving Interconnect requests and related issues.
- ErrorContact - String: The name of the entity receiving error messages.
- ErrorEMail - String: The email address of the entity receiving error messages.
- Config - Object MailboxConfig: The Mailbox configuration object.
- PricelistID - Integer: The value assigned to a specific Pricelist entity.
- ContractID - Integer: The value assigned to a specific Contract entity.
Back To Object Classes