Organizationオブジェクト
グループの情報を格納するオブジェクト
属性
-
- id
- グループを示す一意なID。数字
-
- name
- グループ名。文字列
-
- plan_id
- グループにひもづいているプランのID。数字
-
- available_plan_id
- 実際に有効なプランのID。Paypal等で支払いが行えない場合Payperプランを返す
-
- user_id
- 作成者。数字
-
- default
- user_idのユーザのdefaultのグループに設定されているか否か。0 or 1
-
- description
- グループの説明。文字列。NULL可
-
- created_at
- 作成日時
-
- updated_at
- 最終更新日時
-
- url
- 詳細取得APIのURL
-
- html_url
- ユーザ画面上のURL
-
- point
- グループの総ポイント数(権限がない場合は、available__point)
-
- available__point
- 実際ユーザ使用可能なポイント数
-
- user
- グループ作成ユーザのオブジェクト
Example
{
"id": 5,
"name": "test group",
"plan_id": 1,
"user_id": 107,
"default": 0,
"description": "test decription",
"created_at": "2014-06-10T10:32:48.000+09:00",
"updated_at": "2014-06-10T10:32:48.000+09:00",
"url": "https://biz.conyac.cc/api/v1/organizations/5",
"html_url": "https://conyac.cc/b/organizations/5",
"point": 0,
"available_point": 0
}