Show / Hide Table of Contents

Class PreviewScaleBlockchainPlatformRequest

Inheritance
object
PreviewScaleBlockchainPlatformRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BlockchainService.Requests
Assembly: OCI.DotNetSDK.Blockchain.dll
Syntax
public class PreviewScaleBlockchainPlatformRequest : IOciRequest
Examples

Click here to see an example of how to use PreviewScaleBlockchainPlatform request.

Properties

BlockchainPlatformId

Declaration
[Required(ErrorMessage = "BlockchainPlatformId is required.")]
[HttpConverter(TargetEnum.Path, "blockchainPlatformId")]
public string BlockchainPlatformId { get; set; }
Property Value
Type Description
string

Unique service identifier.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

ScaleBlockchainPlatformDetails

Declaration
[Required(ErrorMessage = "ScaleBlockchainPlatformDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public ScaleBlockchainPlatformDetails ScaleBlockchainPlatformDetails { get; set; }
Property Value
Type Description
ScaleBlockchainPlatformDetails

Input payload to scaleout blockchain platform. The payload cannot be empty.

Remarks

Required

Implements

IOciRequest
In this article
Back to top