Class: Protocol::Caldav::Filter::Calendar::CompFilter

Inherits:
Struct
  • Object
show all
Defined in:
lib/protocol/caldav/filter/calendar.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, is_not_defined: false, time_range: nil, prop_filters: [], comp_filters: []) ⇒ CompFilter

Returns a new instance of CompFilter.



11
12
13
# File 'lib/protocol/caldav/filter/calendar.rb', line 11

def initialize(name:, is_not_defined: false, time_range: nil, prop_filters: [], comp_filters: [])
  super
end

Instance Attribute Details

#comp_filtersObject

Returns the value of attribute comp_filters

Returns:

  • (Object)

    the current value of comp_filters



10
11
12
# File 'lib/protocol/caldav/filter/calendar.rb', line 10

def comp_filters
  @comp_filters
end

#is_not_definedObject

Returns the value of attribute is_not_defined

Returns:

  • (Object)

    the current value of is_not_defined



10
11
12
# File 'lib/protocol/caldav/filter/calendar.rb', line 10

def is_not_defined
  @is_not_defined
end

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



10
11
12
# File 'lib/protocol/caldav/filter/calendar.rb', line 10

def name
  @name
end

#prop_filtersObject

Returns the value of attribute prop_filters

Returns:

  • (Object)

    the current value of prop_filters



10
11
12
# File 'lib/protocol/caldav/filter/calendar.rb', line 10

def prop_filters
  @prop_filters
end

#time_rangeObject

Returns the value of attribute time_range

Returns:

  • (Object)

    the current value of time_range



10
11
12
# File 'lib/protocol/caldav/filter/calendar.rb', line 10

def time_range
  @time_range
end