class PaloAlto::XML::Config::Shared::EmailScheduler::Entry::Recurring

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 40817
def _section
        :'recurring'
end
daily() click to toggle source
# File lib/palo_alto/config.rb, line 40841
def daily
        @subclasses['daily'] ||= Daily.new(parent_instance: self, create_children: @create_children)
end
disabled() click to toggle source
# File lib/palo_alto/config.rb, line 40829
def disabled
        @subclasses['disabled'] ||= Disabled.new(parent_instance: self, create_children: @create_children)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 40814
def has_multiple_values?
        true
end
monthly() click to toggle source

Once a month

# File lib/palo_alto/config.rb, line 40871
def monthly
        prop_get('monthly')
end
monthly=(val) click to toggle source

Once a month

# File lib/palo_alto/config.rb, line 40875
def monthly=(val)
        prop_set('monthly', val)
end
weekly() click to toggle source

Once a week

# File lib/palo_alto/config.rb, line 40863
def weekly
        prop_get('weekly')
end
weekly=(val) click to toggle source

Once a week

# File lib/palo_alto/config.rb, line 40867
def weekly=(val)
        prop_set('weekly', val)
end