55 lines
777 B
Smalltalk
55 lines
777 B
Smalltalk
Class {
|
|
#name : #AirtableRecord,
|
|
#superclass : #Object,
|
|
#instVars : [
|
|
'id',
|
|
'fields',
|
|
'createdTime'
|
|
],
|
|
#category : #'Grafoscopio-Utils-Grafoscopio-Utils'
|
|
}
|
|
|
|
{ #category : #accessing }
|
|
AirtableRecord >> createdTime [
|
|
|
|
^ createdTime
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
AirtableRecord >> createdTime: anObject [
|
|
|
|
createdTime := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
AirtableRecord >> fields [
|
|
|
|
^ fields
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
AirtableRecord >> fields: anObject [
|
|
|
|
fields := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
AirtableRecord >> id [
|
|
|
|
^ id
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
AirtableRecord >> id: anObject [
|
|
|
|
id := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
AirtableRecord >> printOn: aStream [
|
|
super printOn:aStream.
|
|
aStream
|
|
nextPutAll: '(', self id, ')'
|
|
|
|
]
|