SolutionSchemeService

Hierarchy

  • SolutionSchemeService

Methods

exportable

  • exportable(code: string): Promise<boolean>
  • Get the exportability attribute of the solution.

    Parameters

    • code: string

    Returns Promise<boolean>

    The value true means the solution is exported, false means it is not exported.

    const exportable = await  System.scheme.solution.exportable('my_solution');
    

get

  • Get solution information by its code.

    Parameters

    • code: string

    Returns Promise<SolutionScheme | undefined>

    Object with information about the solution and its contents.

    const solutionScheme = await System.scheme.solution.get('my_solution');
    

list

  • list(): Promise<readonly BaseSolutionScheme[]>
  • Get a list of all solutions.

    Returns Promise<readonly BaseSolutionScheme[]>

    Array of objects with information about solutions.

    const  solutions = await System.scheme.solution.list();