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

com.sap.cloud.sdk.services.blockchain.multichain.model.MultichainDestination Maven / Gradle / Ivy

Go to download

Service integration of blockchain functionality (Beta release, still subject to change - up to discontinuation of module).

There is a newer version: 3.14.0
Show newest version
/*
 * Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
 */

package com.sap.cloud.sdk.services.blockchain.multichain.model;

import com.google.common.annotations.Beta;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;

/**
 * The SCP destination information to reach the service instance.
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
@Beta
public class MultichainDestination
{
    /**
     * The URL the service node is reachable
     */
    private String serviceUrl;

    /**
     * The API key to reach the service node.
     */
    private String apiKey;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy