Exemplo n.º 1
0
        private GetExportResult(
            Outputs.ExportDefinitionResponse definition,

            Outputs.ExportDeliveryInfoResponse deliveryInfo,

            string?eTag,

            string?format,

            string id,

            string name,

            Outputs.ExportScheduleResponse?schedule,

            string type)
        {
            Definition   = definition;
            DeliveryInfo = deliveryInfo;
            ETag         = eTag;
            Format       = format;
            Id           = id;
            Name         = name;
            Schedule     = schedule;
            Type         = type;
        }
Exemplo n.º 2
0
        private GetExportResult(
            Outputs.QueryDefinitionResponse definition,

            Outputs.ExportDeliveryInfoResponse deliveryInfo,

            string?format,

            string name,

            Outputs.ExportScheduleResponse?schedule,

            ImmutableDictionary <string, string> tags,

            string type)
        {
            Definition   = definition;
            DeliveryInfo = deliveryInfo;
            Format       = format;
            Name         = name;
            Schedule     = schedule;
            Tags         = tags;
            Type         = type;
        }