com.sap.cloud.sdk.services.blockchain.multichain.model.MultichainDestination Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blockchain Show documentation
Show all versions of blockchain Show documentation
Service integration of blockchain functionality (Beta release, still subject to change - up to discontinuation of module).
/*
* 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;
}