///
/// PhyStatus.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

import NitroModules

/**
 * Represents an instance of `PhyStatus`, backed by a C++ struct.
 */
public typealias PhyStatus = margelo.nitro.munimbluetooth.PhyStatus

public extension PhyStatus {
  private typealias bridge = margelo.nitro.munimbluetooth.bridge.swift

  /**
   * Create a new instance of `PhyStatus`.
   */
  init(txPhy: BluetoothPhy, rxPhy: BluetoothPhy) {
    self.init(txPhy, rxPhy)
  }

  @inline(__always)
  var txPhy: BluetoothPhy {
    return self.__txPhy
  }
  
  @inline(__always)
  var rxPhy: BluetoothPhy {
    return self.__rxPhy
  }
}
