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

com.sap.cloud.mt.subscription.TenantMetadata Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
package com.sap.cloud.mt.subscription;

import java.util.HashMap;
import java.util.Map;

public class TenantMetadata {
    private String tenantId;
    private Map additionalProperties;

    TenantMetadata(String tenantId) {
        this.tenantId = tenantId;
        this.additionalProperties = new HashMap<>();
    }

    public String getTenantId() {
        return this.tenantId;
    }

    public Map getAdditionalProperties() {
        return additionalProperties;
    }

    public void putAdditionalProperty(String key, Object value) {
        this.additionalProperties.put(key, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy