All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aeontronix.anypointsdk.amc.application.deployment.ScopeLoggingConfigurationsItem Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta35
Show newest version
/*
 * Copyright (c) 2023. Aeontronix Inc
 */

package com.aeontronix.anypointsdk.amc.application.deployment;

import com.fasterxml.jackson.annotation.JsonProperty;

public class ScopeLoggingConfigurationsItem {
    public ScopeLoggingConfigurationsItem() {
    }

    public ScopeLoggingConfigurationsItem(String scope, String logLevel) {
        this.logLevel = logLevel;
        this.scope = scope;
    }

	@JsonProperty("logLevel")
	private String logLevel;

	@JsonProperty("scope")
	private String scope;

	public String getLogLevel() {
		return logLevel;
	}

	public String getScope() {
		return scope;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy