StructuresController

protocol StructuresController : Query where Self.Element == Structure

Provides access to the user’s structures and structure related operations.

  • Creates a new structure with the given name.

    Note: This API is not available for Google accounts.

    Declaration

    Swift

    @discardableResult
    func create(name: String) async throws -> Structure
  • Deletes the given structure.

    Note: This API is not implemented.

    Declaration

    Swift

    func delete(structure: Structure) async throws