React Native Firebase
    Preparing search index...

    Interface TemplateFunctionDeclarationBeta

    Structured representation of a template function declaration.

    interface TemplateFunctionDeclaration {
        description?: undefined;
        functionReference?: Function;
        name: string;
        parameters?: ObjectSchema | ObjectSchemaRequest;
    }
    Index

    Properties

    description?: undefined

    Description is intentionally unsupported for template function declarations.

    functionReference?: Function

    Reference to an actual function to call. Specifying this will cause the function to be called automatically when requested by the model.

    name: string

    The name of the function to call. Must start with a letter or an underscore. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a max length of 64.

    Optional. Describes the parameters to this function in JSON Schema Object format.