Provides access to the lists and campaigns associated with a client
Example
@client = new Client(12345)
@client = new Client(12345) @campaigns = @client.campaigns for campaign in @campaigns puts campaign.subject end
@client = new Client(12345) @lists = @client.lists for list in @lists puts list.name end
[Validate]