Files
wp-multisite-waas/inc/api/schemas/email-create.php
2024-11-30 18:24:12 -07:00

145 lines
4.4 KiB
PHP

<?php
/**
* Schema for email@create.
*
* @package WP_Ultimo\API\Schemas
* @since 2.0.11
*/
// Exit if accessed directly
defined('ABSPATH') || exit;
/**
* Schema for email@create.
*
* @since 2.0.11
* @internal last-generated in 2022-12
* @generated class generated by our build scripts, do not change!
*
* @since 2.0.11
*/
return array(
'style' => array(
'description' => __("The email style. Can be 'html' or 'plain-text'.", 'wp-ultimo'),
'type' => 'string',
'required' => false,
'enum' => array(
'html',
'plain-text',
),
),
'schedule' => array(
'description' => __('Whether or not this is a scheduled email.', 'wp-ultimo'),
'type' => 'boolean',
'required' => false,
),
'type' => array(
'description' => __('The type being set.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'event' => array(
'description' => __('The event that needs to be fired for this email to be sent.', 'wp-ultimo'),
'type' => 'string',
'required' => true,
),
'send_hours' => array(
'description' => __('The amount of hours that the email will wait before is sent.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'send_days' => array(
'description' => __('The amount of days that the email will wait before is sent.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'schedule_type' => array(
'description' => __("The type of schedule. Can be 'days' or 'hours'.", 'wp-ultimo'),
'type' => 'string',
'required' => false,
'enum' => array(
'days',
'hours',
),
),
'name' => array(
'description' => __('The name being set as title.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'custom_sender' => array(
'description' => __('If has a custom sender.', 'wp-ultimo'),
'type' => 'boolean',
'required' => false,
),
'custom_sender_name' => array(
'description' => __('The name of the custom sender. E.g. From: John Doe.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'custom_sender_email' => array(
'description' => __('The email of the custom sender. E.g. From: johndoe@gmail.com.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'target' => array(
'description' => __("If we should send this to a customer or to the network admin. Can be 'customer' or 'admin'.", 'wp-ultimo'),
'type' => 'string',
'required' => true,
'enum' => array(
'customer',
'admin',
),
),
'send_copy_to_admin' => array(
'description' => __('Checks if we should send a copy of the email to the admin.', 'wp-ultimo'),
'type' => 'boolean',
'required' => false,
),
'active' => array(
'description' => __('Set this email as active (true), which means available will fire when the event occur, or inactive (false).', 'wp-ultimo'),
'type' => 'boolean',
'required' => false,
),
'legacy' => array(
'description' => __('Whether or not this is a legacy email.', 'wp-ultimo'),
'type' => 'boolean',
'required' => false,
),
'title' => array(
'description' => __('Post title.', 'wp-ultimo'),
'type' => 'string',
'required' => true,
),
'content' => array(
'description' => __('Post content.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'excerpt' => array(
'description' => __('Post excerpt.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'date_created' => array(
'description' => __('Post creation date.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'date_modified' => array(
'description' => __('Post last modification date.', 'wp-ultimo'),
'type' => 'string',
'required' => false,
),
'migrated_from_id' => array(
'description' => __('The ID of the original 1.X model that was used to generate this item on migration.', 'wp-ultimo'),
'type' => 'integer',
'required' => false,
),
'skip_validation' => array(
'description' => __('Set true to have field information validation bypassed when saving this event.', 'wp-ultimo'),
'type' => 'boolean',
'required' => false,
),
);