Skip to main content
Skip table of contents

7.2 Organization Endpoint Service Data

JAVA
    public class TrSvcOrganizationEndpointInfo
    {
        public TrSvcRecordInfo RecordInfo;

        public TrSvcOrganizationReferenceInfo Organization;

        public string OrganizationEndpointName;
        public string OrganizationEndpointCode;
        public string OrganizationEndpointDescription;
        public TrSvcEndpointType EndpointType;
        public string EndpointTypeDisplay;
        public TrSvcEndpointStatus EndpointStatus;
        public string EndpointStatusDisplay;

        public bool IsOrganizationEndpointPendingAlerts;

        public TrSvcOrganizationEndpointInfo()
        {
            RecordInfo = new TrSvcRecordInfo();
        }
    }

    public class TrSvcOrganizationEndpointReferenceInfo
    {
        public string OrganizationEndpointCode;
        public string OrganizationEndpointName;
        public TrSvcEndpointType OrganizationEndpointType;
        public string OrganizationEndpointTypeDisplay;
    }



Organization Endpoint list (no search filters and pagination)

JAVA

    public class TrSvcOrganizationEndpointListInfo
    {
        public List<TrSvcOrganizationEndpointInfo> OrganizationEndpoints;

        public TrSvcOrganizationEndpointListInfo()
        {
            OrganizationEndpoints = new List<TrSvcOrganizationEndpointInfo>();
        }
    }

 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.