fluid-oas
    Preparing search index...

    Interface OpenApiSecurityRequirement

    interface OpenApiSecurityRequirement {
        addSecurityRequirement(
            mappings: Partial<{ [K in string]: string[] }>,
        ): this;
        override(overrideVal: unknown): this;
        toJSON(): unknown;
    }

    Hierarchy

    • RootInterface
      • OpenApiSecurityRequirement
    Index

    Methods

    • Overrides the toJSON method for a custom serialization.

      WARNING: overrideVal must be serializable and future changes are subject to breaking.

      Parameters

      • overrideVal: unknown

        Overrides the serialization of this object into this value.

      Returns this

    • Serializes the object into its equivalent OpenApi JSON value.

      Returns unknown