package com.castlabs.reactnative.network;

/**
 * The request method, for example GET or POST.
 */
public enum RequestMethod {
  GET("get"),
  POST("post");

  public final String value;

  RequestMethod(final String value) {
    this.value = value;
  }
}
