PCMO
To use PCMO, you need to create an instance of the PiopiyAction
class and define the actions you want to perform. The PCMO()
method generates a PCMO object that contains these actions.
PCMO()
- No parameters. Returns the PCMO Object.
Example Implementation
- Below are examples of how to use the
PCMO()
method.
- Node.js
- Python
const { PiopiyAction } = require("piopiy");
const action = new PiopiyAction();
action.PCMO();
from piopiy import Action
# Create an instance of the Action class
action = Action()
action.PCMO()