interface Label {
    subaccountId: Int!
    vendorId: Int!
    following: Boolean!
}

type OrchardVendor {
    id: ID!
}

type OrchardSubaccount {
    id: ID!
    vendorId: ID!
    subaccountName: String!
    description: String
    countryId: Int
    commissionOverride: Float
    subaccountSplitType: SubaccountSplitType!
}
