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

com.aliyun.datahub.client.model.MetaLog Maven / Gradle / Ivy

The newest version!
package com.aliyun.datahub.client.model;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.Map;

public class MetaLog {
    @JsonProperty("Action")
    private String action;
    @JsonProperty("Resource")
    private String resource;
    @JsonProperty("RequestId")
    private String requestId;
    @JsonProperty("User")
    private String user;
    @JsonProperty("Owner")
    private String owner;
    @JsonProperty("UserAgent")
    private String userAgent;
    @JsonProperty("Result")
    private int result;
    @JsonProperty("Timestamp")
    private long timestamp;
    @JsonProperty("Detail")
    private Map detail;

    public String getAction() {
        return action;
    }

    public void setAction(String action) {
        this.action = action;
    }

    public String getResource() {
        return resource;
    }

    public void setResource(String resource) {
        this.resource = resource;
    }

    public String getRequestId() {
        return requestId;
    }

    public void setRequestId(String requestId) {
        this.requestId = requestId;
    }

    public String getUser() {
        return user;
    }

    public void setUser(String user) {
        this.user = user;
    }

    public String getOwner() {
        return owner;
    }

    public void setOwner(String owner) {
        this.owner = owner;
    }

    public String getUserAgent() {
        return userAgent;
    }

    public void setUserAgent(String userAgent) {
        this.userAgent = userAgent;
    }

    public int getResult() {
        return result;
    }

    public void setResult(int result) {
        this.result = result;
    }

    public long getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(long timestamp) {
        this.timestamp = timestamp;
    }

    public Map getDetail() {
        return detail;
    }

    public void setDetail(Map detail) {
        this.detail = detail;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy