Class: JSONSchema::EmailOptions
- Inherits:
-
Object
- Object
- JSONSchema::EmailOptions
- Defined in:
- sig/jsonschema.rbs
Overview
Email format validation options.
Instance Method Summary collapse
-
#allow_display_text ⇒ Boolean
Whether display text is allowed.
-
#allow_domain_literal ⇒ Boolean
Whether domain literals are allowed.
-
#initialize ⇒ Object
constructor
Create email validation options.
- #inspect ⇒ String
-
#minimum_sub_domains ⇒ Integer?
Minimum number of subdomains.
-
#require_tld ⇒ Boolean
Whether TLD is required.
- #to_s ⇒ String
Constructor Details
#initialize ⇒ Object
Create email validation options.
532 |
# File 'sig/jsonschema.rbs', line 532
def initialize: (
|
Instance Method Details
#allow_display_text ⇒ Boolean
Whether display text is allowed.
546 |
# File 'sig/jsonschema.rbs', line 546
def allow_display_text: () -> bool
|
#allow_domain_literal ⇒ Boolean
Whether domain literals are allowed.
543 |
# File 'sig/jsonschema.rbs', line 543
def allow_domain_literal: () -> bool
|
#inspect ⇒ String
551 |
# File 'sig/jsonschema.rbs', line 551
def inspect: () -> String
|
#minimum_sub_domains ⇒ Integer?
Minimum number of subdomains.
549 |
# File 'sig/jsonschema.rbs', line 549
def minimum_sub_domains: () -> Integer?
|
#require_tld ⇒ Boolean
Whether TLD is required.
540 |
# File 'sig/jsonschema.rbs', line 540
def require_tld: () -> bool
|
#to_s ⇒ String
552 |
# File 'sig/jsonschema.rbs', line 552
def to_s: () -> String
|