Class: Spikard::ContactInfo

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeContactInfo

Returns a new instance of ContactInfo.

Parameters:

  • name: (String)
  • email: (String)
  • url: (String)


387
# File 'sig/types.rbs', line 387

def initialize: (?name: String, ?email: String, ?url: String) -> void

Instance Attribute Details

#emailString (readonly)

Returns the value of attribute email.

Returns:

  • (String)


384
385
386
# File 'sig/types.rbs', line 384

def email
  @email
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


383
384
385
# File 'sig/types.rbs', line 383

def name
  @name
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


385
386
387
# File 'sig/types.rbs', line 385

def url
  @url
end