ballerina-platform / ballerina-library

The Ballerina Library
https://ballerina.io/learn/api-docs/ballerina/
Apache License 2.0
136 stars 64 forks source link

Support constant value expression for the default value mapping in OAS generation #7353

Open lnash94 opened 1 week ago

lnash94 commented 1 week ago

Current Limitation

Suggested Improvement

public const RESOURCE_KIND_ENVIRONMENT = "Environment";
public type Environment record {
    string apiVersion;
    ResourceKind kind = RESOURCE_KIND_ENVIRONMENT;
    Metadata metadata;
    EnvironmentSpec spec;
    EnvironmentStatus status?;
};

Version

No response

lnash94 commented 1 week ago