import { flags } from '@oclif/command'; import Payouts from '../payouts'; /** * PayoutsCreate Class extending the superClass Payouts */ export default class PayoutsCreate extends Payouts { /** * @param string * Description of the command payouts:create */ static description: string; /** * @param Object * Insertion of the different commands flags */ static flags: { data: flags.IOptionFlag; schedule: flags.IOptionFlag; 'send-now': import("@oclif/parser/lib/flags").IBooleanFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param string * Set the command usage for help */ static usage: string; /** * @param string[] * examples of payouts:create command */ static examples: string[]; run(): Promise; }