Skip to content

Instantly share code, notes, and snippets.

View coderbec's full-sized avatar

Bec Martin coderbec

View GitHub Profile
using Google.Apis.Services;
using Google.Apis.Util.Store;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System;
using MessageMedia.Messages;
using MessageMedia.Messages.Models;
using MessageMedia.Messages.Exceptions;
using MessageMedia.Messages.Controllers;
@coderbec
coderbec / ShiftReminderApp
Last active January 23, 2019 04:23
Implementation of the MessageMedia C# SDK that pulls data from Google Sheets to send reminders
using Google.Apis.Auth.OAuth2;
using Google.Apis.Sheets.v4;
using Google.Apis.Sheets.v4.Data;
using Google.Apis.Services;
using Google.Apis.Util.Store;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System;
using MessageMedia.Messages;
@coderbec
coderbec / XeroAPI
Created July 26, 2016 01:19
XeroAPI file for scribe-java
public class XeroAPI extends DefaultApi10a {
Context context;
public XeroAPI(Context context) {
this.context = context;
}
@Override