/**
 * UptimeRobot Node - Version 1
 * Discriminator: resource=alertContact, operation=create
 */


interface Credentials {
  uptimeRobotApi: CredentialReference;
}

/** Create a monitor */
export type UptimeRobotV1AlertContactCreateParams = {
  resource: 'alertContact';
  operation: 'create';
/**
 * The friendly name of the alert contact
 */
    friendlyName?: string | Expression<string> | PlaceholderValue;
/**
 * The type of the alert contact
 */
    type?: 4 | 2 | 6 | 9 | 1 | 3 | 5 | Expression<number>;
/**
 * The correspondent value for the alert contact type
 */
    value?: string | Expression<string> | PlaceholderValue;
};

export type UptimeRobotV1AlertContactCreateNode = {
  type: 'n8n-nodes-base.uptimeRobot';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<UptimeRobotV1AlertContactCreateParams>;
};