FollowOperationRequestItem.ets 741 Bytes
// {
// "attentionUserType":"2",
// "attentionUserId":"444911718724933",
// "attentionCreatorId":"3004861",
// "userType":1,
// "userId":"567387477063621",
// "status":1
// }
export class FollowOperationRequestItem{
  attentionUserType:string = ""
  attentionUserId:string = ""
  attentionCreatorId:string = ""
  userType:string = ""
  userId:string = ""
  status:number = 1

  constructor(attentionUserType:string, attentionUserId:string, attentionCreatorId:string, userType:string, userId:string, status:number) {
    this.attentionUserType = attentionUserType
    this.attentionUserId = attentionUserId
    this.attentionCreatorId = attentionCreatorId
    this.userType = userType
    this.userId = userId
    this.status = status
  }

}