class DynamicsCRM::FetchXml::LinkEntity

Attributes

alias[RW]
from[RW]
to[RW]

Public Class Methods

new(logical_name, options={}) click to toggle source
Calls superclass method DynamicsCRM::FetchXml::Entity::new
# File lib/dynamics_crm/fetch_xml/link_entity.rb, line 6
def initialize(logical_name, options={})
    super
    @from = options[:from]|| "#{logical_name}id"
    @to = options[:to] || "#{logical_name}id"
    @alias = options[:alias] || logical_name
    @link_type = options[:link_type] || "inner"
end